basecamp-mcp-server
Provides access to Basecamp 5 projects, to-dos, messages, campfire chat, documents, and card tables.
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., "@basecamp-mcp-serverWhat are my to-dos due today?"
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-server
An MCP server for Basecamp 5 — gives your AI assistant access to projects, to-dos, messages, campfire chat, documents, and card tables.
Works with Claude Code, Claude Desktop, Cursor, OpenAI Codex, and VS Code.
You: What's on my plate in Basecamp this week?
→ basecamp_my_assignments
→ Two things are assigned to you, both in Fieldwork Study:
• Send Robin the drafted survey instrument — due today, 2 subtasks
• Review the pilot analysis — due FridayRequirements
Python 3.11+
A Basecamp 5 account
Credentials, via either:
the Basecamp CLI — recommended, because it keeps a self-refreshing OAuth token in your OS keyring and this server never touches your disk; or
a
BASECAMP_ACCESS_TOKENenvironment variable (expires after 14 days, with no refresh)
Related MCP server: Fizzy Do MCP
Quick start
# 1. Authenticate, if you have not already
basecamp auth login
# 2. Check that everything resolves — this makes a real API call
uvx basecamp-mcp-server doctor
# 3. Add it to your client (Claude Code shown; others below)
claude mcp add basecamp -- uvx basecamp-mcp-server servedoctor prints the resolved credential source, your Basecamp accounts, and a paste-ready config
block for every supported client. Start there if anything below does not work.
Client configuration
The formats genuinely differ between clients — the key name, the file, and whether it is JSON or TOML. Copy the one you need.
Claude Code
claude mcp add basecamp -- uvx basecamp-mcp-server serveVerify with claude mcp list; it should report ✔ Connected.
Claude Desktop
claude_desktop_config.json — macOS ~/Library/Application Support/Claude/,
Windows %APPDATA%\Claude\:
{
"mcpServers": {
"basecamp": {
"command": "uvx",
"args": ["basecamp-mcp-server", "serve"]
}
}
}Cursor
.cursor/mcp.json in the project, or ~/.cursor/mcp.json globally. Same mcpServers shape as
Claude Desktop.
VS Code
.vscode/mcp.json. Note the key is servers, not mcpServers, and type is required:
{
"servers": {
"basecamp": {
"type": "stdio",
"command": "uvx",
"args": ["basecamp-mcp-server", "serve"]
}
}
}OpenAI Codex
~/.codex/config.toml — TOML, and the table is mcp_servers with an underscore:
[mcp_servers.basecamp]
command = "uvx"
args = ["basecamp-mcp-server", "serve"]Permissions
The server has three modes. Tools you have not enabled are not registered at all, so the model never sees them and never proposes an action you have forbidden.
Mode | Flag | Tools | What it can do |
Read-only |
| 19 | Look at everything; change nothing |
Default | (none) | 28 | Create and edit; remove nothing |
Full |
| 29 | Also trash and archive, and only with |
# See exactly what a given configuration exposes
uvx basecamp-mcp-server tools list --read-onlyRead-only is worth considering if you mainly want your assistant to answer questions about Basecamp. You can always restart with writes enabled.
What it can do
Find things — list_projects · get_project · search · my_assignments · list_people
To-dos — list_todolists · list_todos · get_todo · create_todo · update_todo ·
complete_todo
Messages and chat — list_messages · get_message · create_message · list_comments ·
create_comment · list_campfire_lines · create_campfire_line
Docs and cards — list_documents · get_document · get_card_table · list_cards ·
create_card · move_card
Anything else — basecamp_request reaches any Basecamp endpoint these tools do not cover
(GET only), and basecamp_write_request covers POST and PUT.
Start with basecamp_get_project: it returns a tools map giving the ids every other tool in
that project needs, so your assistant does not have to guess them.
Configuration
Everything is optional; the defaults are chosen to be safe rather than fast.
Variable | Default | Notes |
| — | Only needed without the Basecamp CLI |
| auto | Required only if you belong to several Basecamp accounts |
|
| Same as |
|
| Same as |
| this project | Must contain a contact URL or email, or Basecamp rejects every request with a |
|
| Upper bound on auto-pagination per call. Capped at 200 |
|
| Size ceiling for one tool result |
|
| Logs go to stderr, never stdout |
Notes
Responses are projected, not passed through. Basecamp payloads are built for a rich web client: one to-do is ~5 KB of JSON and a single message can be 37 KB. Unprojected, a hundred to-dos would be around 530 KB — enough to end a conversation. Every response is reduced to the fields that let a model answer and chain to the next call, which is a 12–60× cut depending on type, with every id preserved.
Content from Basecamp is untrusted input. To-do titles, message bodies and comments are written by other people. The server tells your assistant to treat them as data to report on rather than instructions to follow, but that is a mitigation, not a guarantee — bear it in mind before enabling writes on an account with people you do not know.
Edits preserve fields you did not mention. update_todo reads the record, overlays your
changes and writes it back, so setting a due date does not erase the assignees. The cost is that
it is two requests rather than one, and a concurrent edit in between is overwritten.
Development
uv sync
uv run ruff check . && uv run ruff format --check . && uv run mypy && uv run pytestSee AGENTS.md for architecture, layer rules, and a list of verified upstream behaviours that look like bugs until you read the source.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA professional MCP server providing complete programmatic access to Basecamp 4 API for AI agents, workflow automation, and custom integrations.5MIT
- Alicense-qualityCmaintenanceOpen-source MCP server that connects AI assistants to Fizzy (Basecamp's task management) with 70+ tools for boards, cards, workflows, and AI-powered project management.93MIT
- FlicenseCqualityBmaintenanceEnables AI assistants to automate Basecamp operations including project management, cards, todos, comments, and people via MCP tools.92
- Alicense-qualityDmaintenanceMCP server exposing Basecamp CLI commands as tools for project management, todos, messages, and more.MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/HuskyDS/basecamp-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server