MCP servers extend Tembo agents with additional tools, integrations, and capabilities. Connect to external systems, APIs, and data sources.
These MCP servers come pre-configured and ready to use with every Tembo workspace.
Core Tembo functionality for task management and collaboration.
Browser automation for testing and web interactions.
Enhanced context management and semantic search.
These MCPs are automatically available when you connect the corresponding integration.
View all integrationsRepository management, issues, and pull requests
Issue tracking and project management
Pages, databases, and workspace access
Tembo supports three protocols for connecting to MCP servers.
Local process-based servers
Run MCP servers as local processes. Best for built-in tools and local development.
Remote HTTP servers
Connect to MCP servers over HTTP. Ideal for shared services and remote APIs.
Server-Sent Events
Real-time streaming connections. Perfect for live data and event-driven tools.
Add custom MCP servers in Settings → Agents → Custom MCP Servers. Tembo accepts JSON configuration with named servers.
Read the docs{
"my-custom-mcp": {
"type": "stdio",
"command": "node",
"args": ["./mcp-server.js"]
},
"remote-api": {
"type": "http",
"url": "https://api.example.com/mcp",
"headers": {
"Authorization": "Bearer $API_KEY"
}
}
}Follow these guidelines for secure and maintainable MCP configurations.
Store API keys and credentials as environment variables, never hardcode them in configurations.
Validate your MCP server configuration locally before deploying to your organization.
Keep configurations in version control and document what each MCP does for your team.
Track which MCPs are being used and their performance to optimize your setup.
Create tasks and automations, so you can focus on what matters most. Leave the repetitive work to Tembo.