What is MCP?
The Model Context Protocol is an open standard that allows AI agents to connect to external tools, APIs, and data sources. MCP servers provide tools that your agents can use to interact with external systems, from browser automation to project management integrations. Learn more at modelcontextprotocol.io.Built-in MCP Servers
Tembo provides several MCP servers out of the box:| Server | Type | Description |
|---|---|---|
| Tembo | stdio | Core Tembo tools (sub-issues, Slack, tasks) |
| Playwright | stdio | Browser automation and web testing |
| Context7 | stdio | Context management and search |
| Kernel | http | Cloud browser infrastructure for web agents |
Tembo MCP
The Tembo MCP server provides tools for interacting with Tembo’s features:- create_task - Create new tasks with optional repository and branch specifications
- list_tasks - List and paginate tasks for your organization with filtering options
- search_tasks - Search tasks by title or description content
- list_repositories - Display enabled code repositories for your organization
- get_current_user - Get authenticated user information
- createSubIssue - Create sub-issues from tasks (available when used within Tembo)
- sendSlackMessage - Send messages to Slack channels (requires Slack integration, available when used within Tembo)
- Built-in - Automatically available for all Tembo agents
- Public npm package - Can be used with other MCP clients like Claude Desktop
Using Tembo MCP with Claude Desktop
The Tembo MCP server is published as a public npm package, allowing you to use Tembo’s task management features directly in Claude Desktop or other MCP-compatible applications. Installation You can use the Tembo MCP server without installation via npx:- Generate a Tembo API key from your API Keys settings
-
Add the following configuration to your MCP client settings file (for Claude Desktop, this is
claude_desktop_config.json):
your-api-key-here with your actual API key from Step 1.
- Restart your MCP client to load the Tembo MCP server
Playwright MCP
Enables agents to automate browser interactions:- Navigate web pages
- Fill forms and click elements
- Take screenshots
- Run automated tests
Context7 MCP
Provides enhanced context management capabilities for your agents.Kernel MCP
The Kernel MCP server provides cloud-based browser infrastructure for AI agents and automation tasks. It offers serverless browsers with anti-bot detection, session persistence, and autoscaling capabilities. Key use cases:- Web scraping and data extraction - Extract data from websites that require JavaScript rendering or authentication
- Automated testing - Run end-to-end browser tests in isolated cloud environments
- Form filling and submissions - Automate complex web workflows that require user interactions
- Screenshot capture - Generate screenshots of web pages for documentation or monitoring
- Browser automation at scale - Run hundreds of concurrent browser sessions without infrastructure management
- create_browser / delete_browser - Launch and terminate browser sessions
- execute_playwright_code - Run Playwright/TypeScript code with automatic video replay
- take_screenshot - Capture screenshots with optional region selection
- setup_profile / list_profiles - Manage browser profiles for session persistence
- list_apps / invoke_action - Interact with Kernel apps and deployments
- search_docs - Search Kernel documentation for up-to-date information via MCP query
Integration MCP Servers
When you connect integrations to Tembo, additional MCP servers become available automatically:| Integration | Server Type | Tools Provided |
|---|---|---|
| GitHub | stdio | Repository management, issues, pull requests |
| Linear | http | Issue tracking, project management |
| Notion | http | Pages, databases, blocks, workspace structure |
Custom MCP Servers
You can add custom MCP servers in your organization settings. Tembo supports three types of MCP servers:Server Types
stdio - Local process-based serversConfiguration Format
Custom MCP servers can be configured using either object or array format:Object Format
Array Format
Adding Custom MCP Servers
To add custom MCP servers to your organization:- Navigate to Settings > Agents in your Tembo dashboard
- Scroll to the Custom MCP Servers section
- Enter your MCP configuration in JSON format
- Press
Cmd+Enter(Mac) orCtrl+Enter(Windows/Linux) to save - New tasks will automatically use the configured MCP servers