MCP Server
io.github.vfa-khuongdv/mcp-backlog MCP Server
io.github.vfa-khuongdv/mcp-backlog
What is the io.github.vfa-khuongdv/mcp-backlog MCP server?
MCP server for Backlog API integration with AI agents.
How to install io.github.vfa-khuongdv/mcp-backlog
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
BACKLOG_HOSTrequiredYour Backlog instance URL (e.g., your-space-id.backlog.com)
BACKLOG_API_KEYrequiredsecretYour Backlog API key from account settings
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-backlog": {
"command": "npx",
"args": [
"-y",
"@duongkhuong/mcp-backlog"
],
"env": {
"BACKLOG_HOST": "<YOUR_BACKLOG_HOST>",
"BACKLOG_API_KEY": "<YOUR_BACKLOG_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-backlog": {
"command": "npx",
"args": [
"-y",
"@duongkhuong/mcp-backlog"
],
"env": {
"BACKLOG_HOST": "<YOUR_BACKLOG_HOST>",
"BACKLOG_API_KEY": "<YOUR_BACKLOG_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-backlog": {
"command": "npx",
"args": [
"-y",
"@duongkhuong/mcp-backlog"
],
"env": {
"BACKLOG_HOST": "<YOUR_BACKLOG_HOST>",
"BACKLOG_API_KEY": "<YOUR_BACKLOG_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-backlog": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@duongkhuong/mcp-backlog"
],
"env": {
"BACKLOG_HOST": "<YOUR_BACKLOG_HOST>",
"BACKLOG_API_KEY": "<YOUR_BACKLOG_API_KEY>"
}
}
}
}Claude Code
claude mcp add mcp-backlog --env BACKLOG_HOST=<YOUR_BACKLOG_HOST> --env BACKLOG_API_KEY=<YOUR_BACKLOG_API_KEY> -- npx -y @duongkhuong/mcp-backlogRelated MCP servers
MCP server for Redmine API integration with AI agents.
View repository →