Basecamp 2 MCP
Manage Basecamp 2 projects, todos, messages, and people via the Basecamp 2 API.
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 2 MCPShow me 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 2 MCP
A Model Context Protocol (MCP) server that connects Claude and other AI assistants to the Basecamp 2 API. Manage projects, todos, messages, and people directly from your AI assistant.
Prerequisites
Node.js 18 or later
A Basecamp 2 account
OAuth 2 credentials or your username and password
Related MCP server: Basecamp MCP Server
OAuth Setup (recommended)
Register your app at launchpad.37signals.com/integrations to obtain a
client_idandclient_secret.Run the auth helper — it opens a browser, handles the redirect, exchanges the code for tokens, and prints your
BASECAMP_ACCOUNT_IDautomatically:BASECAMP_CLIENT_ID=your_client_id \ BASECAMP_CLIENT_SECRET=your_client_secret \ npx basecamp-2-mcp-authCopy the printed env vars into your
.envor MCP server config.The MCP server will automatically refresh the access token when it expires (~2 weeks) as long as
BASECAMP_REFRESH_TOKEN,BASECAMP_CLIENT_ID, andBASECAMP_CLIENT_SECRETare set.By default
npx basecamp-2-mcp-authlistens on port3000. SetOAUTH_PORTto change it (your registered redirect URI must match).
Environment Variables
Variable | Required | Description |
| Yes | Your account ID — printed by the auth helper, or found in the URL: |
| Yes* | OAuth 2 access token |
| No | Enables automatic token refresh when the access token expires |
| No† | Required for automatic token refresh |
| No† | Required for automatic token refresh |
| Yes* | Your Basecamp email (Basic Auth alternative) |
| Yes* | Your Basecamp password (Basic Auth alternative) |
| Yes | Identifies your integration, e.g. |
* Either BASECAMP_ACCESS_TOKEN or both BASECAMP_USERNAME + BASECAMP_PASSWORD are required.
† Required together with BASECAMP_REFRESH_TOKEN to enable automatic token refresh.
Setup with Claude Desktop
Add the following to your claude_desktop_config.json (usually at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"basecamp-2": {
"command": "npx",
"args": ["-y", "basecamp-2-mcp"],
"env": {
"BASECAMP_ACCOUNT_ID": "your_account_id",
"BASECAMP_ACCESS_TOKEN": "your_access_token",
"BASECAMP_REFRESH_TOKEN": "your_refresh_token",
"BASECAMP_CLIENT_ID": "your_client_id",
"BASECAMP_CLIENT_SECRET": "your_client_secret",
"USER_AGENT": "MyApp (you@example.com)"
}
}
}
}Then restart Claude Desktop.
Setup with Claude Code
claude mcp add basecamp-2 -- npx -y basecamp-2-mcpThen set the required environment variables in your shell or .env file.
Running Locally
# 1. Clone the repo and install dependencies
npm install
# 2. Copy and fill in environment variables
cp .env.example .env
# 3. Build
npm run build
# 4. Start the MCP server
npm startFor development with live reload:
npm run devTo test interactively with the MCP Inspector:
npx @modelcontextprotocol/inspector npx tsx src/index.tsAvailable Tools
Projects
Tool | Description |
| List all active projects |
| Get a project by ID |
People
Tool | Description |
| Get the currently authenticated user |
| List all people in the account |
| Get a person by ID |
Todo Lists
Tool | Description |
| List all todo lists in a project |
| Get a todo list with its todos |
| Create a new todo list in a project |
Todos
Tool | Description |
| List all todos in a todo list |
| Get a single todo item |
| Create a new todo (supports due date + assignee) |
| Update a todo's content, due date, or assignee |
| Mark a todo as completed |
| Delete a todo item |
Messages & Topics
Tool | Description |
| List all topics (messages, forwards, etc.) in a project |
| Get a full message by ID (use the |
| Post a new message to a project |
Authentication
Basecamp 2 uses OAuth 2 via Launchpad. The authorization flow is:
User visits
https://launchpad.37signals.com/authorization/new?type=web_server&client_id=…&redirect_uri=…After approving, Basecamp redirects to your
redirect_uriwith a short-livedcodeYour app POSTs the code to
https://launchpad.37signals.com/authorization/tokento receive an access token and a refresh tokenAccess tokens are sent as
Authorization: Bearer <token>. Refresh tokens last ~2 weeks.
The npx basecamp-2-mcp-auth helper handles steps 1–3 automatically. The MCP server handles step 4 including silent refresh.
Every API request must also include a User-Agent header identifying your app and a contact email — this is a Basecamp API requirement. See Identifying your application.
License
MIT
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
- 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/thedistance/Basecamp-2-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server