Backlog MCP Server
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 删除
Related MCP server: MCP Server Linear
配置
获取 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
{
"mcpServers": {
"backlog": {
"command": "npx",
"args": [
"-y",
"backlog-mcp-server"
],
"env": {
"BACKLOG_API_KEY": "YOUR_API_KEY_HERE",
"BACKLOG_SPACE_ID": "YOUR_SPACE_ID_HERE"
}
}
}
}Docker
{
"mcpServers": {
"backlog": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"BACKLOG_API_KEY=YOUR_API_KEY_HERE",
"-e",
"BACKLOG_SPACE_ID=YOUR_SPACE_ID_HERE",
"mcp/backlog"
],
"env": {
"BACKLOG_API_KEY": "YOUR_API_KEY_HERE",
"BACKLOG_SPACE_ID": "YOUR_SPACE_ID_HERE"
}
}
}
}发展
安装
npm install建造
npm run build调试
npm run debug运行测试
待定
Docker 构建
docker build -t mcp/backlog -f Dockerfile .扩展服务器
要添加新工具:
在
src/core/schema.ts中定义一个新的 Zod 模式在
src/tools/toolDefinitions.ts中添加新的工具定义并将其包含在ALL_TOOLS中在
src/tools/handlers.ts中创建一个新的处理程序,并在toolHandlers中注册它在
src/services/目录中的服务中实现业务逻辑
执照
此 MCP 服务器采用 MIT 许可证。这意味着您可以自由使用、修改和分发该软件,但须遵守 MIT 许可证的条款和条件。更多详情,请参阅项目仓库中的 LICENSE 文件。
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseCqualityDmaintenanceThis 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.1
- AlicenseNot gradedqualityFmaintenanceAn 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.1,2751MIT
- AlicenseBqualityAmaintenanceA 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.1984,657146MIT
- AlicenseCqualityDmaintenanceAn MCP server that connects to Backlog API, providing functionality to search, retrieve, and update issues through natural language commands.48,6306MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for generating rough-draft project plans from natural-language prompts.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fleagne/backlog-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server