An MCP server for the Tembo API.
This MCP server provides the following tools:
- create_task - Create new tasks in Tembo with optional repository and branch targeting
- list_tasks - Get a paginated list of tasks for your organization
- search_tasks - Search for tasks by query string in title or description
- list_repositories - Get enabled code repositories for your organization
- get_current_user - Retrieve information about the authenticated user
npx -y @tembo-io/mcpnpm install -g @tembo-io/mcpHead to the API Keys page and obtain a new key to use with the MCP server.
Add the following configuration to your MCP client settings (e.g., Claude Desktop's claude_desktop_config.json):
{
"mcpServers": {
"tembo": {
"command": "npx",
"args": ["-y", "@tembo-io/mcp"],
"env": {
"TEMBO_API_KEY": "your-api-key"
}
}
}
}