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
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
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 47,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

MCP server exposing Basecamp CLI commands as tools for project management, todos, messages, and more.

README.md

basecamp-mcp

MCP (Model Context Protocol) server for Basecamp CLI.

Exposes Basecamp commands as MCP tools over HTTP or stdio. Shells out to the basecamp CLI binary, so all auth, config, and output formatting is handled by the CLI.

Prerequisites

  • Basecamp CLI installed and authenticated (basecamp auth login)
  • Python 3.11+ / uv

Quick Start

One command to start the server:

uvx --from "git+https://github.com/FarisHijazi/basecamp-mcp.git" basecamp-mcp --port 8818

Then add it to Claude Code:

claude mcp add --transport http basecamp http://localhost:8818/mcp --scope user

That's it. Start a new Claude Code session and you'll have all 49 Basecamp tools available.

Claude Code MCP Config

If you prefer to configure manually, add this to your .mcp.json (project-level) or ~/.claude.json (global):

HTTP mode (run the server yourself): ``json { "mcpServers": { "basecamp": { "type": "url", "url": "http://localhost:8818/mcp" } } } ``

Stdio mode (Claude Code spawns the process automatically): ``json { "mcpServers": { "basecamp": { "type": "stdio", "command": "uvx", "args": [ "--from", "git+https://github.com/FarisHijazi/basecamp-mcp.git", "basecamp-mcp", "--stdio" ] } } } ``

Usage

# Run from GitHub (no install needed)
uvx --from "git+https://github.com/FarisHijazi/basecamp-mcp.git" basecamp-mcp --port 8818

# Or install locally
uv pip install -e .
basecamp-mcp --port 8818

# Stdio transport (for local Claude Code)
basecamp-mcp --stdio

Environment Variables

| Variable | Default | Description | |---|---|---| | BASECAMP_BINARY | basecamp | Path to the basecamp CLI binary |

Available Tools (49)

All tools shell out to basecamp --agent <command> [args].

| Tool | CLI Equivalent | |---|---| | basecamp_projects_list | basecamp projects list | | basecamp_projects_show | basecamp projects show | | basecamp_projects_create | basecamp projects create | | basecamp_todos_list | basecamp todos list | | basecamp_todos_create | basecamp todos create | | basecamp_todos_complete | basecamp todos complete | | basecamp_todos_update | basecamp todos update | | basecamp_todolists_list | basecamp todolists list | | basecamp_messages_list | basecamp messages list | | basecamp_messages_create | basecamp messages create | | basecamp_comments_create | basecamp comments create | | basecamp_chat_post | basecamp chat post | | basecamp_cards_list | basecamp cards list | | basecamp_cards_move | basecamp cards move | | basecamp_files_list | basecamp files list | | basecamp_schedule_entries | basecamp schedule entries | | basecamp_people_list | basecamp people list | | basecamp_search | basecamp search | | basecamp_show | basecamp show | | basecamp_me | basecamp me | | basecamp_accounts_list | basecamp accounts list | | basecamp_notifications_list | basecamp notifications list | | basecamp_reports_assigned | basecamp reports assigned | | basecamp_reports_overdue | basecamp reports overdue | | basecamp_api | basecamp api | | basecamp_url | basecamp url | | ... and 23 more | |

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

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