Basecamp 2 MCP Server
An MCP server that wraps the Basecamp 2 REST API, enabling Claude to create and manage todos, projects, and people through natural language.
README
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)
Setup
- Clone the repo and install dependencies:
git clone <repo-url>
cd Basecamp2_mcp
npm install
- Create a
.envfile (or set environment variables directly):
cp .env.example .env
Fill in the 4 required variables:
| Variable | Description |
|---|---|
BASECAMP_ACCOUNT_ID |
Your Basecamp account ID (the number in your Basecamp URL) |
BASECAMP_USERNAME |
Your Basecamp login email |
BASECAMP_PASSWORD |
Your Basecamp login password |
BASECAMP_USER_AGENT |
A User-Agent string identifying your app (e.g. MyApp (you@example.com)) |
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.js
Set the environment variables in your shell or .env file before starting Claude Code.
Tools
| Tool | Description |
|---|---|
list_projects |
List all active projects |
get_project |
Get details of a specific project |
list_todolists |
List all todo lists in a project |
get_todolist |
Get a todo list with its todos |
create_todolist |
Create a new todo list |
create_todo |
Create a todo item (with optional assignee, due date, attachments) |
update_todo |
Update a todo (content, assignee, due date, completion, position) |
upload_attachment |
Upload a file and get an attachment token |
list_people |
List all people visible to you |
get_project_accesses |
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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.