teambition-local MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@teambition-local MCPFind project Marketing and list its members"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
teambition-local MCP
将 Teambition 开放平台 v3 API 封装为 MCP 服务(Streamable HTTP),供 n8n 批量建任务工作流调用,也可复用给 Claude 等其他 MCP 客户端。
工具清单
工具 | 类型 | 用途 |
tb_search_projects | 只读 | 按名称分页搜索项目,解析 projectId |
tb_get_project | 只读 | 按 ID 查项目详情 |
tb_list_project_members | 只读 | 分页拉项目成员,用于负责人匹配 |
tb_search_tasks | 只读 | 项目内按关键词分页搜任务,查重/找父任务 |
tb_get_task | 只读 | 按 ID 查任务,校验目标父任务 |
tb_create_task | 写 | 创建任务(仅确认阶段调用),返回真实 taskId 和链接 |
优先级映射:普通→0,紧急→1,非常紧急→2。任务备注经 note 字段完整传入。
Related MCP server: N8N MCP Server
部署(Docker)
复制
.env.example为.env,填入四个值。Secret 只存在这里,不要提交仓库、不要贴到聊天工具。docker build -t teambition-local-mcp . && docker run -d --name tb-mcp --env-file .env -p 3300:3300 teambition-local-mcp健康检查:
curl http://<主机>:3300/healthz→{"ok":true}验证工具列表:
curl -X POST http://<主机>:3300/mcp \ -H "Authorization: Bearer <MCP_AUTH_TOKEN>" \ -H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'真实连通性验证(第一次务必做):用 tools/call 调
tb_search_projects,name 填一个已知项目名。若报权限错误,去开放平台「权限管理」勾选:项目查看、项目成员查看、任务列表查看(tb-core:task:list)、任务创建(tb-core:task:create),并在「应用发布」发布版本、安装到企业。
与 n8n 对接
n8n 侧使用 MCP Client 节点,Endpoint 填
http://<主机>:3300/mcp,传输选 Streamable HTTP,认证用 Header:Authorization: Bearer <MCP_AUTH_TOKEN>(存入 n8n Credentials,勿写死在节点里)。n8n 与本服务同机或同内网部署时,不要把 3300 端口暴露到公网;必须公网时加 HTTPS 反代。
两处可能需要微调的端点
创建任务(/v3/task/create)、项目内任务查询(/v3/project/{id}/task/query)已对照官方文档核实。项目搜索(/v3/project/query)与项目成员(/v3/project/{id}/member/query)的路径和参数名请以你企业开放平台文档实测为准——如果第 5 步验证时报 404,在 server.mjs 顶部对应工具处改一行路径即可,工具名和入参结构不用动。
This server cannot be deployed
Maintenance
Related MCP Connectors
n8n MCP — query your own n8n instance (BYO).
ClickUp MCP — wraps the ClickUp REST API v2 (BYO API key)
- mcpOAuthnet.todoist
Official Todoist MCP server for AI assistants to manage tasks, projects, and workflows.
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
Related MCP Servers
- AlicenseAqualityDmaintenance🪄 MCP server for programmatic creation and management of n8n workflows. Enables AI assistants to build, modify, and manage workflows without direct user intervention through a comprehensive set of tools and resources for interacting with n8n's REST API.1023 npm86MIT
- AlicenseNot gradedqualityDmaintenanceEnables management of multiple N8N workflow automation instances through MCP. Supports listing, creating, updating, deleting, executing workflows and monitoring their executions across different N8N environments.50 npmMIT
- AlicenseNot gradedqualityDmaintenanceMCP server for n8n workflow automation, enabling management of workflows, executions, credentials, tags, users, and webhooks via an MCP-compatible client.MIT
- AlicenseAqualityDmaintenanceWraps the n8n self-hosted REST API to let Claude and MCP-compatible LLMs manage workflows, executions, credentials, and more via natural language.3950 npmMIT