Basecamp MCP Server
Provides comprehensive integration with Basecamp 3, enabling management of projects, todo lists, card tables, documents, campfire messages, comments, webhooks, and daily check-ins. Includes 46 tools for creating, updating, and organizing cards, columns, steps, and searching across Basecamp resources.
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 Servershow me the latest campfire messages from the Technology project"
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 3. It lets MCP-capable clients such as Codex, Cursor, and Claude Desktop read and manage Basecamp projects through OAuth-authenticated Basecamp API calls.
The main server is basecamp_fastmcp.py. It uses the official mcp.server.fastmcp Python SDK and exposes 75 tools covering projects, todos, message boards, campfires, card tables, inbox forwards, documents, uploads, comments, events, webhooks, and search.
What It Can Do
Browse Basecamp projects and project details.
Search across projects, todos, messages, campfire lines, comments, uploads, and schedules.
Read and manage todolists, todos, todo groups, and completion state.
Read and post message board messages, including categories.
Read campfire lines.
Read and create comments.
Work with card tables, columns, cards, and card steps.
Read inbox forwards and replies.
Read daily check-ins and answers.
Upload attachments and inspect uploads.
Read and manage documents.
List events and manage webhooks.
Generate local MCP configuration for Codex, Cursor, and Claude Desktop.
Requirements
Python 3.10 or newer.
A Basecamp 3 account.
A Basecamp OAuth application from https://launchpad.37signals.com/integrations.
A client that can run local MCP servers, such as Codex, Cursor, or Claude Desktop.
If your system Python is older, use uv; it can create a virtual environment with a newer Python version.
Quick Start
Clone the repository and install dependencies:
git clone https://github.com/georgeantonopoulos/Basecamp-MCP-Server.git
cd Basecamp-MCP-Server
uv venv --python 3.12 venv
source venv/bin/activate
uv pip install -r requirements.txtOr, if python already points to Python 3.10 or newer:
python setup.pyCreate a .env file from the example and fill in your Basecamp OAuth details:
cp .env.example .envRequired values:
BASECAMP_CLIENT_ID=your-client-id
BASECAMP_CLIENT_SECRET=your-client-secret
BASECAMP_ACCOUNT_ID=your-account-id
USER_AGENT="Your App Name (your@email.com)"Authenticate with Basecamp:
python oauth_app.pyOpen http://localhost:8000 and complete the OAuth flow. The token is stored locally in oauth_tokens.json by default.
Configure Your MCP Client
Codex
python generate_codex_config.py
codex mcp get basecampUseful options:
python generate_codex_config.py --dry-run
python generate_codex_config.py --legacyThe script writes a basecamp server entry to ~/.codex/config.toml and points it at this checkout's virtual environment and basecamp_fastmcp.py.
Cursor
python generate_cursor_config.pyThen restart Cursor and check Settings -> MCP. The server should appear as basecamp.
Claude Desktop
python generate_claude_desktop_config.pyThen fully quit and reopen Claude Desktop. The generated config is written to:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
~/AppData/Roaming/Claude/claude_desktop_config.jsonLinux:
~/.config/claude-desktop/claude_desktop_config.json
Verify The Server
Run the FastMCP server through stdio and ask for its tool list:
printf '%s\n%s\n%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized","params":{}}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' \
| python basecamp_fastmcp.pyRun the automated tests:
python -m pytest tests/ -vAvailable Tools
The FastMCP server exposes 75 tools.
Projects And Search
get_projectsget_projectsearch_basecampglobal_search
Todos
get_todolistsget_todolistcreate_todolistupdate_todolisttrash_todolistget_todosget_todocreate_todoupdate_tododelete_todoarchive_todocomplete_todouncomplete_todoreposition_todoget_todolist_groupscreate_todolist_groupreposition_todolist_group
Messages, Campfires, And Check-Ins
get_message_boardget_messagesget_messageget_message_categoriescreate_messageget_campfire_linesget_daily_check_insget_question_answers
Comments
get_commentscreate_comment
Card Tables
get_card_tablesget_card_tableget_columnsget_columncreate_columnupdate_columnmove_columnupdate_column_colorput_column_on_holdremove_column_holdwatch_columnunwatch_columnget_cardsget_cardcreate_cardupdate_cardmove_cardcomplete_carduncomplete_cardget_card_stepscreate_card_stepget_card_stepupdate_card_stepdelete_card_stepcomplete_card_stepuncomplete_card_step
Inbox Forwards
get_inboxget_forwardsget_forwardget_inbox_repliesget_inbox_replytrash_forward
Documents, Uploads, Attachments, Events, And Webhooks
create_attachmentget_uploadsget_uploadget_documentsget_documentcreate_documentupdate_documenttrash_documentget_eventsget_webhookscreate_webhookdelete_webhook
Example Prompts
"Show me all my Basecamp projects."
"Search Basecamp for deadline."
"Get the todolists for project 123456."
"Create a todo called Review PR in todolist 987654."
"Show me the message board categories for project 123456."
"Post an Announcement to the project message board."
"Show me the card table columns for project 123456."
"Move this card to the Done column."
"List the latest uploads in this project's vault."
Architecture
basecamp_fastmcp.py: FastMCP stdio server used by MCP clients.basecamp_client.py: Synchronous Basecamp 3 API client.search_utils.py: Higher-level search helpers across Basecamp resources.oauth_app.py: Local Flask OAuth flow for Basecamp authentication.auth_manager.py: OAuth refresh helper used before API calls.token_storage.py: Local OAuth token storage.generate_codex_config.py: Codex MCP configuration generator.generate_cursor_config.py: Cursor MCP configuration generator.generate_claude_desktop_config.py: Claude Desktop configuration generator.mcp_server_cli.py: Legacy JSON-RPC server kept for compatibility and tests.
Authentication And Token Storage
The recommended path is OAuth 2.0:
Create a Basecamp OAuth app.
Put the client ID, client secret, account ID, redirect URI, and user agent in
.env.Run
python oauth_app.py.Complete the browser flow at http://localhost:8000.
By default, OAuth tokens are stored in <project>/oauth_tokens.json. For containers, read-only checkouts, or mounted token volumes, set BASECAMP_MCP_TOKEN_FILE:
export BASECAMP_MCP_TOKEN_FILE=/var/lib/basecamp-mcp/oauth_tokens.jsonBoth the OAuth app and the MCP server read the same variable. token_storage.py expands ~ and environment variables in this path, creates the parent directory if needed, and attempts to set the token file permissions to 0o600 when writing. Parent directory permissions are still your responsibility.
Troubleshooting
If tools do not appear in your MCP client:
Confirm the virtual environment exists and has the MCP SDK:
./venv/bin/python -c "import mcp; print('MCP available')"Confirm
.envcontainsBASECAMP_ACCOUNT_ID.Re-run the relevant config generator.
Fully quit and restart your MCP client.
If authentication fails:
python oauth_app.pyThen open http://localhost:8000 and complete the Basecamp OAuth flow again.
For Claude Desktop on macOS, MCP logs are usually under:
~/Library/Logs/Claude/Security Notes
Do not commit
.envoroauth_tokens.json.Use a descriptive
USER_AGENTthat includes contact information, as Basecamp expects API clients to identify themselves.Keep token files on local or appropriately permissioned storage.
This server is designed for local MCP client use. Review the code and deployment model before exposing it on a network.
License
MIT. See LICENSE.
Star History
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.
Latest Blog Posts
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/georgeantonopoulos/Basecamp-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server