basecamp-mcp
Provides tools for interacting with Basecamp, including managing projects, todos, todolists, messages, comments, chat, cards, files, schedule entries, people, search, and more via the Basecamp CLI.
Click on "Deploy 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., "@basecamp-mcplist all my projects"
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.
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
Related MCP server: TaskWarrior MCP Server
Quick Start
One command to start the server:
uvx --from "git+https://github.com/FarisHijazi/basecamp-mcp.git" basecamp-mcp --port 8818Then add it to Claude Code:
claude mcp add --transport http basecamp http://localhost:8818/mcp --scope userThat'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):
{
"mcpServers": {
"basecamp": {
"type": "url",
"url": "http://localhost:8818/mcp"
}
}
}Stdio mode (Claude Code spawns the process automatically):
{
"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 --stdioEnvironment Variables
Variable | Default | Description |
|
| Path to the basecamp CLI binary |
Available Tools (49)
All tools shell out to basecamp --agent <command> [args].
Tool | CLI Equivalent |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
... and 23 more |
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
- mcpOAuthnet.todoist
Official Todoist MCP server for AI assistants to manage tasks, projects, and workflows.
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
Create, list, and complete todo items through MCP.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA professional MCP server providing complete programmatic access to Basecamp 4 API for AI agents, workflow automation, and custom integrations.5MIT
- AlicenseNot gradedqualityAmaintenanceMCP server that wraps TaskWarrior command-line tool. Provides 22 tools for task management, GTD workflow, and habit tracking.6 npm9MIT
- AlicenseNot gradedqualityDmaintenanceMulti-user MCP server for Basecamp 3 with 148+ tools, enabling AI clients to manage projects, todos, messages, and more via stdio or multi-tenant HTTP.1MIT
- FlicenseBqualityCmaintenanceAn MCP server that wraps the Basecamp 2 REST API, enabling Claude to create and manage todos, projects, and people through natural language.13-