Services

Managed MCP Servers

Hosted Model Context Protocol servers — ready-to-connect tool providers for AI agents


The Model Context Protocol (MCP) defines how AI agents discover and invoke external tools. Running those tool servers yourself means managing more infrastructure. We host a growing catalog of MCP servers and operate custom ones — your agents connect, we keep the servers running.

What MCP Servers Enable#

MCP servers expose tools that agents can call during a task: query a database, search the web, read a file, send a notification, or call any API. Instead of hardcoding integrations into each agent, tools are declared by the server and discovered at runtime.

Benefits for agent developers:

  • Tool definitions are versioned and discoverable — no manual schema updates
  • Authentication handled at the server level, not in agent code
  • New tools available to all agents without redeployment
  • Rate limiting and quotas enforced at the server, not per-agent

Pre-Built Server Catalog#

Data & Databases#

ServerCapabilities
PostgreSQLQuery, insert, update, describe schema, run migrations
MySQL / MariaDBRead/write queries, schema inspection
MongoDBDocument CRUD, aggregation pipelines
RedisKey-value get/set, pub/sub, stream operations
ClickHouseAnalytical queries, time-series data
ElasticsearchFull-text search, document indexing

Search & Web#

ServerCapabilities
Web SearchGoogle, Bing, and Brave search with configurable result count
Web ScraperFetch and parse any URL, extract structured content
NewsCurrent events from curated sources with date filtering
Academic SearchPapers from ArXiv, Semantic Scholar, and PubMed

Code & Compute#

ServerCapabilities
Python SandboxExecute Python code in an isolated environment
Node.js SandboxExecute JavaScript/TypeScript in an isolated environment
ShellRun bash commands in scoped containers
GitClone, diff, log, and read repository content

Files & Storage#

ServerCapabilities
File SystemRead, write, list, and search files in scoped directories
S3 / GCSObject storage read/write, presigned URLs
Google DriveDocument read, search, and creation
NotionPage read, write, and database queries

Communication & Productivity#

ServerCapabilities
SlackSend messages, read channels, manage threads
EmailSend via SMTP/API, read inbox (OAuth)
CalendarCreate events, check availability, invite attendees
LinearIssue CRUD, project queries, status updates
GitHubIssues, PRs, repository operations, workflow triggers

Custom MCP Server Hosting#

Have your own MCP server? We host it with the same reliability SLA as our catalog servers.

What we provide:

  • Container hosting with health checks and auto-restart
  • TLS certificate management and HTTPS endpoint
  • Authentication layer (API keys or OAuth — your choice)
  • Horizontal scaling based on request volume
  • Request logging and error alerting
  • Rolling deploys with zero downtime

Supported runtimes: Node.js, Python, Go, and any containerized binary.

Deployment: Push a container image or connect a Git repository and we build from source on every release tag.


Security Model#

Authentication#

Every MCP server connection requires an API key scoped to a specific agent or team. Keys rotate automatically on a configurable schedule.

Tool-Level Permissions#

Restrict which tools an agent can invoke even within a connected server:

1
{
2
"agentId": "research-agent",
3
"server": "postgresql",
4
"allowedTools": ["query", "describe_schema"],
5
"deniedTools": ["insert", "update", "delete", "drop"]
6
}

Network Controls#

  • IP allowlist per server
  • Private network access (VPC peering available)
  • Egress filtering on sandbox servers
  • mTLS for high-security environments

Audit Log#

Every tool call recorded with: agent identity, tool name, input arguments (redacted fields configurable), output size, latency, and timestamp. Exportable to your SIEM.


Reliability#

MetricCommitment
Availability99.9% uptime SLA
Response latencyp99 < 500ms for database and search servers
Sandbox cold start< 2 seconds
FailoverAutomatic region failover for critical servers

Pricing Model#

  • Catalog servers — charged per tool call, no base fee
  • Custom hosting — flat monthly rate per server based on resource profile
  • Enterprise — reserved capacity with predictable pricing

All plans include request logging, alerting, and the management dashboard.


Getting Started#