BusinessMap MCP Server
Click on "Install 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., "@BusinessMap MCP ServerList all my boards"
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.
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
Related MCP server: businessmap-mcp
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 syncAlternatively, run the setup script:
./setup.sh2. 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-here3. Test the Server
uv run python businessmap_mcp_server.pyClaude 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.pyContributing
Feel free to extend this server with additional BusinessMap API endpoints or features.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/martasd/businessmap-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server