Backlog MCP 服务器
集成 Backlog API 的 MCP 服务器实现。
工具
项目 API
backlog_get_projects
使用分页和过滤功能执行项目
backlog_get_project
使用项目 ID 或密钥执行项目获取
问题 API
backlog_get_issues
分页和过滤的执行问题
backlog_get_issue
使用问题 ID 或密钥执行问题获取
backlog_add_issue
使用问题数据执行问题添加
backlog_update_issue
使用问题数据执行问题更新
backlog_delete_issue
使用问题 ID 或密钥执行问题删除
维基 API
backlog_get_wikis
使用关键字执行 wikis get
backlog_get_wiki
使用 wiki id 或 key 执行 wiki gets
backlog_add_wiki
使用 wiki 数据执行 wiki add
backlog_update_wiki
使用 wiki 数据执行 wiki 更新
backlog_delete_wiki
使用 wiki id 或 key 执行 wiki 删除
配置
获取 API 密钥
环境变量
此服务器需要以下环境变量:
必需的:
BACKLOG_API_KEY:您的 Backlog API 密钥BACKLOG_SPACE_ID:您的 Backlog 空间 ID
选修的:
BACKLOG_BASE_URL:您的 Backlog 基本 URL(默认值:https://{your-space-id}.backlog.com/api/v2)
与 Claude Desktop 一起使用
将其添加到您的claude_desktop_config.json中:
NPX
Docker
发展
安装
建造
调试
运行测试
待定
Docker 构建
扩展服务器
要添加新工具:
在
src/core/schema.ts中定义一个新的 Zod 模式在
src/tools/toolDefinitions.ts中添加新的工具定义并将其包含在ALL_TOOLS中在
src/tools/handlers.ts中创建一个新的处理程序,并在toolHandlers中注册它在
src/services/目录中的服务中实现业务逻辑
执照
此 MCP 服务器采用 MIT 许可证。这意味着您可以自由使用、修改和分发该软件,但须遵守 MIT 许可证的条款和条件。更多详情,请参阅项目仓库中的 LICENSE 文件。
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
与 Backlog API 集成的 MCP 服务器实现,通过自然语言交互实现包括问题、项目和 wiki 在内的项目管理操作。
Related Resources
Related MCP Servers
- -security-license-qualityThis is an MCP server that facilitates building tools for interacting with various APIs and workflows, supporting Python-based development with potential for customizable prompts and user configurations.Last updated -
- Asecurity-licenseAqualityAn MCP server that provides tools for interacting with Linear issue tracking system, currently supporting issue search with plans to expand to issue creation, updates, comments, and project management.Last updated -341MIT License
- Asecurity-licenseAqualityA Model Context Protocol server that enables AI assistants to interact with Linear project management systems, allowing users to retrieve, create, and update issues, projects, and teams through natural language.Last updated -42561106MIT License
- Asecurity-licenseAqualityAn MCP server that connects to Backlog API, providing functionality to search, retrieve, and update issues through natural language commands.Last updated -411,0466