Skip to main content
MCP
MCP (Model Context Protocol) servers extend what your agents can access during tasks. Install them from the Integrations page.

Available servers

ServerWhat it does
KernelChromium browsers, Playwright automation, video replays
Context7Version-specific documentation and code examples
PostHogAnalytics, feature flags, error tracking
NeonNeon Postgres databases
SupabaseSupabase projects and databases
PlanetScalePlanetScale databases
StripeCustomers, payments, subscriptions, invoices
ClerkUsers, organizations, authentication
NotionPages, databases, workspace content
JamBug reports, recordings, repro steps
SupermemoryLong-term memory and context
AttioCRM records, lists, workspace data
FiretigerCloud tools and resources
GitHub, Linear, Sentry, and Postgres MCP servers are automatically available when you connect those integrations.

Custom servers

Bring your own MCP servers from the Integrations page using Custom MCP. Supports stdio, HTTP, and SSE, including OAuth.

Connection types

Remote (HTTP/SSE)

Use this for hosted MCP servers.
  • Required: name, serverUrl
  • Optional: static headers (for example, Authorization)
  • If the server requires OAuth, Tembo returns an authorization URL and completes setup after you authorize

Stdio

Use this for command-based MCP servers started in the sandbox.
  • Required: name, command
  • Optional: args (space-separated in UI), env variables
Example:
{
  "type": "stdio",
  "name": "github-mcp",
  "command": "npx",
  "args": ["-y", "@modelcontextprotocol/server-github"],
  "env": {
    "GITHUB_TOKEN": "ghp_xxx"
  }
}