Supports automated release processes including creating GitHub tags and releases, generating release notes from commits, and managing version releases through GitHub's platform.
Enables automated publishing to NPM registry as part of the release process, with support for version management and package distribution.
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-mcpshow me all cards in the 'Q4 Planning' board"
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
Model Context Protocol server for BusinessMap (Kanbanize) integration. Provides comprehensive access to BusinessMap's project management features through 56 tools, 5 resources, and 4 guided prompts — covering workspaces, boards, cards, subtasks, parent-child relationships, outcomes, comments, tags, stickers, predecessors, custom fields, and more.
Installation
Via NPX (Recommended)
You can run the BusinessMap MCP server directly using npx without installing it globally:
npx @edicarlos.lds/businessmap-mcpGlobal Installation
npm install -g @edicarlos.lds/businessmap-mcpRelated MCP server: ABAP-ADT-API MCP-Server
Configuration
Environment Variables
The server requires the following environment variables:
BUSINESSMAP_API_TOKEN: Your BusinessMap API tokenBUSINESSMAP_API_URL: Your BusinessMap API URL (e.g.,https://your-account.kanbanize.com/api/v2)BUSINESSMAP_READ_ONLY_MODE: Set to"true"for read-only mode,"false"to allow modifications (optional, defaults to"false")BUSINESSMAP_DEFAULT_WORKSPACE_ID: Set the BusinessMap workspace ID (optional)LOG_LEVEL: Set logging verbosity -0(DEBUG),1(INFO),2(WARN),3(ERROR),4(NONE) (optional, defaults to1)PORT: Server port for HTTP mode (optional, defaults to3000)TRANSPORT: Set tostdio(default) orhttpALLOWED_ORIGINS: Comma-separated CORS origin allowlist for HTTP mode (optional, defaults tohttp://localhost)ALLOWED_HOSTS: Comma-separated Host header allowlist for HTTP mode DNS rebinding protection (optional)
Local Usage with .env
When running locally (e.g., via npx or npm start), the server will automatically look for a .env file in your current working directory.
# Create a .env file
echo "BUSINESSMAP_API_TOKEN=your_token" > .env
echo "BUSINESSMAP_API_URL=https://..." >> .env
# Run the server
npx @edicarlos.lds/businessmap-mcpClaude Desktop
Config file location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Open it via Settings → Developer → Edit Config, then add:
{
"mcpServers": {
"businessmap": {
"command": "npx",
"args": ["-y", "@edicarlos.lds/businessmap-mcp"],
"env": {
"BUSINESSMAP_API_TOKEN": "your_token_here",
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
"BUSINESSMAP_READ_ONLY_MODE": "false",
"BUSINESSMAP_DEFAULT_WORKSPACE_ID": "1"
}
}
}
}Note: Fully quit and restart Claude Desktop after editing (on macOS, quit from the Dock; on Windows, exit from the system tray). JSON does not support comments — remove any before saving.
Claude Code
Run the following command to add the server globally or per-project:
# Add globally (available across all projects)
claude mcp add --transport stdio --scope user businessmap -- npx -y @edicarlos.lds/businessmap-mcp
# Add to current project only (stored in ~/.claude.json)
claude mcp add --transport stdio businessmap -- npx -y @edicarlos.lds/businessmap-mcpTo pass environment variables:
claude mcp add --transport stdio \
--env BUSINESSMAP_API_TOKEN=your_token_here \
--env BUSINESSMAP_API_URL=https://your-account.kanbanize.com/api/v2 \
businessmap -- npx -y @edicarlos.lds/businessmap-mcpAlternatively, commit a .mcp.json file to your project root to share it with your team:
{
"mcpServers": {
"businessmap": {
"command": "npx",
"args": ["-y", "@edicarlos.lds/businessmap-mcp"],
"env": {
"BUSINESSMAP_API_TOKEN": "${BUSINESSMAP_API_TOKEN}",
"BUSINESSMAP_API_URL": "${BUSINESSMAP_API_URL}"
}
}
}
}Tip: Use environment variable expansion (
${VAR}) in.mcp.jsonto avoid hardcoding secrets in source control.
Cursor
Create or edit ~/.cursor/mcp.json (global) or .cursor/mcp.json at the project root (project-specific):
{
"mcpServers": {
"businessmap": {
"command": "npx",
"args": ["-y", "@edicarlos.lds/businessmap-mcp"],
"env": {
"BUSINESSMAP_API_TOKEN": "your_token_here",
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
"BUSINESSMAP_READ_ONLY_MODE": "false",
"BUSINESSMAP_DEFAULT_WORKSPACE_ID": "1"
}
}
}
}You can also manage servers via Settings → Features → MCP in the Cursor UI.
VS Code
VS Code uses "servers" as the top-level key (not "mcpServers"). Create or edit .vscode/mcp.json in your project root (workspace-scoped, safe to commit), or the user-level config at:
macOS:
~/Library/Application Support/Code/User/mcp.jsonWindows:
%APPDATA%\Code\User\mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "businessmap-token",
"description": "BusinessMap API Token",
"password": true
}
],
"servers": {
"businessmap": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@edicarlos.lds/businessmap-mcp"],
"env": {
"BUSINESSMAP_API_TOKEN": "${input:businessmap-token}",
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
"BUSINESSMAP_READ_ONLY_MODE": "false",
"BUSINESSMAP_DEFAULT_WORKSPACE_ID": "1"
}
}
}
}Note: The
inputsblock lets VS Code prompt you for secrets at runtime instead of hardcoding them. Requires the GitHub Copilot Chat extension. Add via Command Palette:MCP: Add Server.
Windsurf
Edit ~/.codeium/windsurf/mcp_config.json (open from the Cascade panel's MCPs icon → Configure):
{
"mcpServers": {
"businessmap": {
"command": "npx",
"args": ["-y", "@edicarlos.lds/businessmap-mcp"],
"env": {
"BUSINESSMAP_API_TOKEN": "your_token_here",
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
"BUSINESSMAP_READ_ONLY_MODE": "false",
"BUSINESSMAP_DEFAULT_WORKSPACE_ID": "1"
}
}
}
}Tip: Windsurf supports
${env:VARIABLE_NAME}syntax insideenvvalues to reference host environment variables.
Zed
MCP servers are configured inside Zed's main settings file (~/.config/zed/settings.json) under the context_servers key. Open it via Zed → Settings or Cmd+,:
{
"context_servers": {
"businessmap": {
"source": "custom",
"command": "npx",
"args": ["-y", "@edicarlos.lds/businessmap-mcp"],
"env": {
"BUSINESSMAP_API_TOKEN": "your_token_here",
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
"BUSINESSMAP_READ_ONLY_MODE": "false",
"BUSINESSMAP_DEFAULT_WORKSPACE_ID": "1"
}
}
}
}You can also add servers via the Agent Panel's Settings view (Add Custom Server). A green indicator dot in the Agent Panel confirms the server is running.
Other MCP Clients
For any other MCP-compatible client, configure a stdio server with:
Command:
npx -y @edicarlos.lds/businessmap-mcpRequired env vars:
BUSINESSMAP_API_TOKEN,BUSINESSMAP_API_URLOptional env vars:
BUSINESSMAP_READ_ONLY_MODE,BUSINESSMAP_DEFAULT_WORKSPACE_ID,LOG_LEVEL
Remote Usage (Streamable HTTP)
You can run the server as a remote MCP endpoint over Streamable HTTP. This is useful for deploying to cloud providers or using clients that support remote MCP connections.
Start the server in HTTP mode:
export TRANSPORT=http export PORT=3000 export ALLOWED_ORIGINS=https://your-client.example.com export ALLOWED_HOSTS=your-server.example.com npm startConnect your client:
Configure your MCP client to connect to the Streamable HTTP endpoint:
URL:
http://your-server:3000/mcp
Manual Setup
Clone this repository:
git clone https://github.com/edicarloslds/businessmap-mcp.git cd businessmap-mcpInstall dependencies:
npm installCreate a
.envfile with your BusinessMap credentials (for development/testing):BUSINESSMAP_API_TOKEN=your_token_here BUSINESSMAP_API_URL=https://your-account.kanbanize.com/api/v2 BUSINESSMAP_READ_ONLY_MODE=false BUSINESSMAP_DEFAULT_WORKSPACE_ID=1Note: When using as an MCP server with Claude Desktop, you don't need a
.envfile. Configure the environment variables directly in your MCP client configuration instead.Build the project:
npm run buildStart the server:
npm start
Usage
The BusinessMap MCP server provides tools, resources, and prompts for comprehensive project management integration.
Tools
Workspace Management
list_workspaces- Get all workspacesget_workspace- Get workspace detailscreate_workspace- Create new workspace
Board Management
list_boards- List boards in workspace(s)search_board- Search for boards by ID or nameget_current_board_structure- Get the complete current structure of a board including workflows, columns, lanes, and configurationscreate_board- Create new board (if not in read-only mode)get_columns- Get all columns for a boardget_lanes- Get all lanes for a boardget_lane- Get details of a specific lane/swimlanecreate_lane- Create new lane/swimlane (if not in read-only mode)create_column- Create a new column on a board (supports main columns and sub-columns)update_column- Update the details of a specific column on a boarddelete_column- Delete a column from a board
Card Management
Basic Card Operations
list_cards- Get cards from a board with optional filtersget_card- Get detailed card informationget_card_size- Get the size/points of a specific cardget_card_types- Get all available card typescreate_card- Create new cardmove_card- Move card to different column/swimlaneupdate_card- Update card propertiesset_card_size- Set the size/points of a specific carddelete_card- Permanently delete a card (irreversible)
Card Comments
get_card_comments- Get all comments for a specific cardget_card_comment- Get details of a specific comment from a cardcreate_comment- Add a new comment to a cardupdate_comment- Update the text of an existing comment on a carddelete_comment- Delete a comment from a card
Card Custom Fields
get_card_custom_fields- Get all custom fields for a specific card
Card Outcomes & History
get_card_outcomes- Get all outcomes for a specific cardget_card_history- Get the history of a specific card outcome
Card Relationships
get_card_linked_cards- Get all linked cards for a specific card
Card Subtasks
get_card_subtasks- Get all subtasks for a specific cardget_card_subtask- Get details of a specific subtask from a cardcreate_card_subtask- Create a new subtask for a card
Card Parent Relationships
get_card_parents- Get a list of parent cards for a specific cardget_card_parent- Check if a card is a parent of a given cardadd_card_parent- Make a card a parent of a given cardremove_card_parent- Remove the link between a child card and a parent cardget_card_parent_graph- Get a list of parent cards including their parent cards tooget_card_children- Get a list of child cards of a specified parent card
Card Blocking
block_card- Block a card and set a reason/comment explaining why it is blockedunblock_card- Unblock a card by removing its block reason
Card Tags
create_tag- Create a new tag in the workspaceadd_tag_to_card- Add an existing tag to a cardremove_tag_from_card- Remove a tag from a card
Card Stickers
add_sticker_to_card- Add a sticker to a cardremove_sticker_from_card- Remove a sticker from a card using the sticker-card association ID
Card Predecessors
add_predecessor- Establish or update a predecessor-successor relationship between two cardsremove_predecessor- Remove the predecessor-successor relationship between two cards
Custom Field Management
get_custom_field- Get details of a specific custom field by ID
Workflow & Cycle Time Analysis
get_workflow_cycle_time_columns- Get workflow's cycle time columnsget_workflow_effective_cycle_time_columns- Get workflow's effective cycle time columns
User Management
list_users- Get all usersget_user- Get user detailsget_current_user- Get current logged user detailsinvite_user- Add and invite a new user by email
System
health_check- Check API connectionget_api_info- Get API information
Resources
The server exposes structured data resources accessible via URI:
URI | Description |
| List all workspaces |
| List all boards |
| Get details of a specific board |
| List all cards for a specific board |
| Get details of a specific card |
Prompts
The server provides guided prompts for common AI-assisted workflows:
Prompt | Description |
| Analyze a board's performance: flow efficiency, bottlenecks, cycle time, and workload distribution |
| Generate a comprehensive status report for a board, including cards summary and highlights |
| Guide the creation of a well-structured card from a natural language description |
| Generate a high-level status overview of a workspace, including all boards and their key metrics |
Tool Summary
The BusinessMap MCP server provides 56 tools, 5 resources, and 4 prompts:
Tools by Category
Workspace Management: 3 tools
Board Management: 11 tools
Card Management: 36 tools (organized in 9 subcategories)
Custom Field Management: 1 tool
Workflow & Cycle Time Analysis: 2 tools
User Management: 4 tools
System: 2 tools (1 utility tool)
Key Features
Advanced Card Management
Complete CRUD operations for cards, subtasks, and relationships
Parent-child card hierarchies with full graph traversal
Outcome tracking and history for detailed progress monitoring
Linked cards management for cross-project dependencies
Custom fields and types support for flexible workflows
Card blocking/unblocking with reason tracking
Tags and stickers for visual card organization
Predecessor-successor relationships for dependency management
Comment management (create, update, delete) for collaboration
Comprehensive Board Operations
Multi-workspace board management with search capabilities
Full column management (create, update, delete) with section and sub-column support
Lane (swimlane) operations for workflow customization
Board structure analysis with detailed metadata
Resources & Prompts
5 structured data resources for direct URI-based data access
4 guided prompts for common AI-assisted workflows (board analysis, reporting, card creation, workspace overview)
Workflow Intelligence
Cycle time analysis with configurable column sets
Effective cycle time tracking for performance optimization
Custom field integration for enhanced reporting
Enterprise Features
Read-only mode for safe data exploration
Robust error handling with detailed error messages
Automatic connection verification with retry logic
Docker support for containerized deployments
Structured logging with multiple log levels (DEBUG, INFO, WARN, ERROR)
Logging
The server uses a structured logging system that outputs to STDERR (required for MCP protocol compatibility). You can control the verbosity using the LOG_LEVEL environment variable:
0(DEBUG): All messages including detailed debugging information1(INFO): Informational messages, warnings, and errors (default)2(WARN): Only warnings and errors3(ERROR): Only error messages4(NONE): Disable all logging
Example configuration with custom log level:
{
"mcpServers": {
"Businessmap": {
"command": "npx",
"args": ["-y", "@edicarlos.lds/businessmap-mcp"],
"env": {
"BUSINESSMAP_API_TOKEN": "your_token_here",
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
"LOG_LEVEL": "0"
}
}
}
}Note: All logging uses STDERR to maintain compatibility with the MCP JSON-RPC protocol, which requires STDOUT to be reserved exclusively for protocol communication.
Development
Setup Development Environment
# Install dependencies
npm install
# Run in development mode
npm run dev
# Watch for changes
npm run watch
# Build for production
npm run build
# Run tests
npm test
# Lint code
npm run lintDocker Support
# Build Docker image
npm run docker:build
# Run with Docker Compose
npm run docker:up
# View logs
npm run docker:logs
# Stop containers
npm run docker:downTroubleshooting
Connection Issues
The server now includes automatic connection verification during startup. If you encounter connection issues:
Check your environment variables:
echo $BUSINESSMAP_API_URL echo $BUSINESSMAP_API_TOKENTest the connection manually:
chmod +x scripts/test-connection.sh ./scripts/test-connection.shCommon issues:
Invalid API URL: Ensure your URL follows the format
https://your-account.kanbanize.com/api/v2Invalid API Token: Verify your token has the necessary permissions
Startup Process
The server now performs the following steps during initialization:
Configuration validation - Checks all required environment variables
API connection verification - Tests connectivity with up to 3 retry attempts
Authentication check - Verifies API token permissions
Server startup - Starts the MCP server only after successful connection
If the connection fails, the server will display detailed error messages and retry automatically.
Release Process
This project uses an automated release process. See RELEASE_PROCESS.md for detailed documentation.
Full Tools Reference
For the complete list of all tools, resources, and prompts with detailed parameter descriptions, see TOOLS.md.
Quick Start:
# Preview release notes
npm run preview:release
# Publish new version (interactive)
# Publish to NPM and create GitHub release (interactive flows)
npm run publish:npm && npm run publish:githubThe release process automatically:
Bumps version (patch/minor/major)
Generates release notes from commits
Creates GitHub tags and releases
Publishes to NPM
Contributing
Follow conventional commit format for better release notes:
feat: add new feature fix: resolve bug docs: update documentation refactor: improve code structureEnsure all tests pass before submitting PR:
npm test npm run test:npx
Sponsors
If you find this project helpful and would like to support its development, please consider becoming a sponsor through GitHub Sponsors.
License
MIT
Support
For issues and questions:
Check the Issues page
Review BusinessMap API documentation
Verify your environment configuration
Submit a new issue with detailed information
Related Projects
Model Context Protocol - Official MCP documentation
BusinessMap API Documentation - Official API reference
BusinessMap Demo API - Interactive API documentation and testing environment
MCP TypeScript SDK - Official MCP SDK