Basecamp 2 MCP Server
Allows managing Basecamp 2 projects, todo lists, and todo items (including assignees, due dates, and attachments) via the Basecamp REST 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 MCP ServerCreate a new todo list for the design 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 2 MCP Server
An MCP (Model Context Protocol) server that wraps the Basecamp 2 REST API, enabling Claude to create and manage todos through natural language.
Prerequisites
Node.js 18+
A Basecamp 2 account with API credentials (username/password)
Related MCP server: Todoist MCP Server
Setup
Clone the repo and install dependencies:
git clone <repo-url>
cd Basecamp2_mcp
npm installCreate a
.envfile (or set environment variables directly):
cp .env.example .envFill in the 4 required variables:
Variable | Description |
| Your Basecamp account ID (the number in your Basecamp URL) |
| Your Basecamp login email |
| Your Basecamp login password |
| A User-Agent string identifying your app (e.g. |
Basecamp 2 requires a User-Agent with contact info per their API policy.
MCP Client Configuration
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"basecamp2": {
"command": "node",
"args": ["/absolute/path/to/Basecamp2_mcp/src/index.js"],
"env": {
"BASECAMP_ACCOUNT_ID": "your-account-id",
"BASECAMP_USERNAME": "your-email",
"BASECAMP_PASSWORD": "your-password",
"BASECAMP_USER_AGENT": "YourApp (you@example.com)"
}
}
}
}Claude Code
Add to your Claude Code settings (.claude/settings.json or via claude mcp add):
claude mcp add basecamp2 -- node /absolute/path/to/Basecamp2_mcp/src/index.jsSet the environment variables in your shell or .env file before starting Claude Code.
Tools
Tool | Description |
| List all active projects |
| Get details of a specific project |
| List all todo lists in a project |
| Get a todo list with its todos |
| Create a new todo list |
| Create a todo item (with optional assignee, due date, attachments) |
| Update a todo (content, assignee, due date, completion, position) |
| Get a todo item including its comments |
| Comment on a todo or todo list (with optional attachments) |
| Upload a file and get an attachment token + name |
| List all people visible to you |
| List people with access to a project |
Troubleshooting
"Missing required environment variables" — Ensure all 4 env vars are set. Check .env.example for the list.
401 Unauthorized — Verify your username and password. Basecamp 2 uses HTTP Basic Auth with your login credentials.
403 Forbidden — Your User-Agent may be missing or not include contact info.
429 Too Many Requests — The server automatically retries once after the Retry-After delay. If you still hit rate limits, slow down your requests.
Connection errors — Confirm your BASECAMP_ACCOUNT_ID is correct and that you can access https://basecamp.com/<id> in a browser.
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/envisialearning/Basecamp2_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server