Businessmap Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Businessmap Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server for integrating BusinessMap (formerly Kanbanize) with MCP-compatible applications.
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 pointlist_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 titlecreate_card(template_type, title, description="") - Create new cardsupdate_card(card_id, title=None, description=None) - Update existing cardsThis project uses uv for dependency management.
cd businessmap-mcp-server
uv syncAlternatively, run the setup script:
./setup.shYou 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-hereuv run python businessmap_mcp_server.pyTo use with Claude Code, add this server to your MCP settings:
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"
}
}
}
}{
"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"
}
}
}
}Once configured, you can use these commands in Claude Code:
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 cardsEnable debug logging:
export LOG_LEVEL=DEBUG
uv run python businessmap_mcp_server.pyFeel free to extend this server with additional BusinessMap API endpoints or features.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.