BusinessMap MCP Server
Integrates BusinessMap (formerly Kanbanize) project management capabilities with MCP-compatible applications, enabling board management, card operations, user management, and search.
README
BusinessMap MCP Server
A Model Context Protocol (MCP) server for integrating BusinessMap (formerly Kanbanize) with MCP-compatible applications.
Features
- Board Management: List workspaces and boards
- Card Operations: Search, view, create, and update cards
- User Management: List team members
- Search Capabilities: Find cards by title across boards
Architecture
The server is organized into separate modules for maintainability:
businessmap_client.py- BusinessMap API clientbusinessmap_tools.py- MCP tool implementationsbusinessmap_mcp_server.py- Main server entry point
Available Tools
Information Tools
list_workspaces()- Get all workspaceslist_boards()- Get all boardslist_users()- Get all usersget_board_cards(board_id, limit=50)- Get cards from a specific boardget_card_details(card_id)- Get detailed card informationsearch_cards(query, board_id=None, limit=20)- Search cards by title
Management Tools
create_card(template_type, title, description="")- Create new cardsupdate_card(card_id, title=None, description=None)- Update existing cards
Setup
1. Install Dependencies
This project uses uv for dependency management.
cd businessmap-mcp-server
uv sync
Alternatively, run the setup script:
./setup.sh
2. Set Environment Variables
You need to configure your BusinessMap credentials:
export BUSINESSMAP_SUBDOMAIN="YOUR_SUBDOMAIN_HERE"
export BUSINESSMAP_API_KEY="your-api-key-here"
Or create a .env file:
BUSINESSMAP_SUBDOMAIN=YOUR_SUBDOMAIN_HERE
BUSINESSMAP_API_KEY=your-api-key-here
3. Test the Server
uv run python businessmap_mcp_server.py
Claude Code Integration
To use with Claude Code, add this server to your MCP settings:
Option 1: Using stdio transport
Add to your Claude Code settings (~/.config/claude-code/settings/default.json):
{
"mcpServers": {
"businessmap": {
"command": "python",
"args": ["/path/to/businessmap-mcp-server/businessmap_mcp_server.py"],
"env": {
"BUSINESSMAP_SUBDOMAIN": "YOUR_SUBDOMAIN_HERE",
"BUSINESSMAP_API_KEY": "your-api-key-here"
}
}
}
}
Option 2: Using uv (recommended)
{
"mcpServers": {
"businessmap": {
"command": "uv",
"args": ["--directory", "/path/to/businessmap-mcp-server", "run", "python", "businessmap_mcp_server.py"],
"env": {
"BUSINESSMAP_SUBDOMAIN": "YOUR_SUBDOMAIN_HERE",
"BUSINESSMAP_API_KEY": "your-api-key-here"
}
}
}
}
Usage Examples
Once configured, you can use these commands in Claude Code:
- "List all my BusinessMap boards"
- "Show me cards in the Development board"
- "Search for cards about 'authentication'"
- "Create a new card in board 3 with title 'Fix login bug'"
- "Get details for card 14193"
- "Update card 14193 with a new description"
API Reference
BusinessMap API Integration
This server uses BusinessMap's REST API v2. The following endpoints are supported:
GET /workspaces- List workspacesGET /boards- List boardsGET /cards- List cards (with filtering)GET /cards/{id}- Get card detailsGET /users- List usersPOST /cards- Create cardsPATCH /cards/{id}- Update cards
Security Notes
- Store your API key securely
- Use environment variables rather than hardcoding credentials
- The API key has full access to your BusinessMap account
- Consider creating a dedicated API key for this integration
Troubleshooting
Common Issues
- Authentication Error: Verify your API key and subdomain are correct
- Connection Error: Check your internet connection and BusinessMap service status
- Permission Error: Ensure your API key has appropriate permissions
Debug Mode
Enable debug logging:
export LOG_LEVEL=DEBUG
uv run python businessmap_mcp_server.py
Contributing
Feel free to extend this server with additional BusinessMap API endpoints or features.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。