Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Integrates BusinessMap (formerly Kanbanize) project management capabilities with MCP-compatible applications, enabling board management, card operations, user management, and search.

README.md

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 client
  • businessmap_tools.py - MCP tool implementations
  • businessmap_mcp_server.py - Main server entry point

Available Tools

Information Tools

  • list_workspaces() - Get all workspaces
  • list_boards() - Get all boards
  • list_users() - Get all users
  • get_board_cards(board_id, limit=50) - Get cards from a specific board
  • get_card_details(card_id) - Get detailed card information
  • search_cards(query, board_id=None, limit=20) - Search cards by title

Management Tools

  • create_card(template_type, title, description="") - Create new cards
  • update_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 workspaces
  • GET /boards - List boards
  • GET /cards - List cards (with filtering)
  • GET /cards/{id} - Get card details
  • GET /users - List users
  • POST /cards - Create cards
  • PATCH /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

  1. Authentication Error: Verify your API key and subdomain are correct
  2. Connection Error: Check your internet connection and BusinessMap service status
  3. 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.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.