A modern TypeScript MCP server for Basecamp 3, providing seamless integration with Claude Desktop and Cursor IDE through the Model Context Protocol. Built with the official @modelcontextprotocol/sdk and ready for NPX installation.
β
TypeScript-First: Modern, type-safe implementation with full async/await support
π NPX Ready: Install and run with npx @basecamp/mcp-server
β‘ 46 API Tools: Complete Basecamp 3 integration with all major features
# Install and set up in one command
npx jhliberty/basecamp-mcp-server setup
# Authenticate with Basecamp
npx jhliberty/basecamp-mcp-server auth
# Configure for your AI assistant
npx jhliberty/basecamp-mcp-server config claude # For Claude Desktop
npx jhliberty/basecamp-mcp-server config cursor # For Cursor IDE
- Node.js 18+ (required for ES modules)
- A Basecamp 3 account
- A Basecamp OAuth application (create one at https://launchpad.37signals.com/integrations)
-
Clone and build the project:
git clone <repository-url> cd basecamp-mcp-server npm install npm run build
-
Run setup script:
npm run setup
The setup script automatically:
- β Installs all TypeScript dependencies
- β
Builds the project to
dist/
- β
Creates
.env
template file - β Tests MCP server functionality
-
Configure OAuth credentials: Edit the generated
.env
file:BASECAMP_CLIENT_ID=your_client_id_here BASECAMP_CLIENT_SECRET=your_client_secret_here BASECAMP_ACCOUNT_ID=your_account_id_here USER_AGENT="Your App Name (your@email.com)"
-
Authenticate with Basecamp:
npm run auth
Visit http://localhost:8000 and complete the OAuth flow.
-
Generate configurations:
npm run config:cursor # For Cursor IDE npm run config:claude # For Claude Desktop
-
Restart your AI assistant completely (quit and reopen)
-
Verify in your AI assistant:
- Cursor: Go to Settings β MCP, look for "basecamp" with a green checkmark
- Claude Desktop: Look for tools icon (π) in chat interface
- Available tools: 46 tools for complete Basecamp control
# Quick test the MCP server
echo '{"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":{}}' | node dist/index.js
# Run automated tests
npm test
# Run tests with UI
npm run test:ui
Based on the official MCP quickstart guide, Claude Desktop integration follows these steps:
-
Complete the basic setup (steps 1-4 from development setup above):
git clone <repository-url> cd basecamp-mcp-server npm install npm run setup # Configure .env file with OAuth credentials npm run auth
-
Generate Claude Desktop configuration:
npm run config:claude
-
Restart Claude Desktop completely (quit and reopen the application)
-
Verify in Claude Desktop:
- Look for the "Search and tools" icon (π) in the chat interface
- You should see "basecamp" listed with all 46 tools available
- Toggle the tools on to enable Basecamp integration
The configuration is automatically created at:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
~/AppData/Roaming/Claude/claude_desktop_config.json
- Linux:
~/.config/claude-desktop/claude_desktop_config.json
Example configuration generated:
{
"mcpServers": {
"basecamp": {
"command": "node",
"args": ["/path/to/your/project/dist/index.js"],
"env": {
"BASECAMP_ACCOUNT_ID": "your_account_id"
}
}
}
}
Ask Claude things like:
- "What are my current Basecamp projects?"
- "Show me the latest campfire messages from the Technology project"
- "Create a new card in the Development column with title 'Fix login bug'"
- "Get all todo items from the Marketing project"
- "Search for messages containing 'deadline'"
Check Claude Desktop logs (following official debugging guide):
# macOS/Linux - Monitor logs in real-time
tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
# Check for specific errors
ls ~/Library/Logs/Claude/mcp-server-basecamp.log
Common issues:
- Tools not appearing: Verify configuration file syntax and restart Claude Desktop
- Connection failures: Check that Node.js path and script path are absolute paths
- Authentication errors: Ensure OAuth flow completed successfully (
oauth_tokens.json
exists)
Once configured, you can use these tools in Cursor:
get_projects
- Get all Basecamp projectsget_project
- Get details for a specific projectget_todolists
- Get todo lists for a projectget_todos
- Get todos from a todo listsearch_basecamp
- Search across projects, todos, and messagesget_comments
- Get comments for a Basecamp itemget_campfire_lines
- Get recent messages from a Basecamp campfireget_daily_check_ins
- Get project's daily check-in questionsget_question_answers
- Get answers to daily check-in questionscreate_attachment
- Upload a file as an attachmentget_events
- Get events for a recordingget_webhooks
- List webhooks for a projectcreate_webhook
- Create a webhookdelete_webhook
- Delete a webhookget_documents
- List documents in a vaultget_document
- Get a single documentcreate_document
- Create a documentupdate_document
- Update a documenttrash_document
- Move a document to trash
get_card_table
- Get the card table details for a projectget_columns
- Get all columns in a card tableget_column
- Get details for a specific columncreate_column
- Create a new column in a card tableupdate_column
- Update a column titlemove_column
- Move a column to a new positionupdate_column_color
- Update a column colorput_column_on_hold
- Put a column on hold (freeze work)remove_column_hold
- Remove hold from a column (unfreeze work)watch_column
- Subscribe to notifications for changes in a columnunwatch_column
- Unsubscribe from notifications for a columnget_cards
- Get all cards in a columnget_card
- Get details for a specific cardcreate_card
- Create a new card in a columnupdate_card
- Update a cardmove_card
- Move a card to a new columncomplete_card
- Mark a card as completeuncomplete_card
- Mark a card as incompleteget_card_steps
- Get all steps (sub-tasks) for a cardcreate_card_step
- Create a new step (sub-task) for a cardget_card_step
- Get details for a specific card stepupdate_card_step
- Update a card stepdelete_card_step
- Delete a card stepcomplete_card_step
- Mark a card step as completeuncomplete_card_step
- Mark a card step as incomplete
Ask Cursor things like:
- "Show me all my Basecamp projects"
- "What todos are in project X?"
- "Search for messages containing 'deadline'"
- "Get details for the Technology project"
- "Show me the card table for project X"
- "Create a new card in the 'In Progress' column"
- "Move this card to the 'Done' column"
- "Update the color of the 'Urgent' column to red"
- "Mark card as complete"
- "Show me all steps for this card"
- "Create a sub-task for this card"
- "Mark this card step as complete"
The project uses the official @modelcontextprotocol/sdk for maximum reliability and compatibility:
- MCP Server (
src/index.ts
) - Official MCP SDK with 46 tools, compatible with both Cursor and Claude Desktop - OAuth App (
src/lib/oauth-app.ts
) - Handles OAuth 2.0 flow with Basecamp - Token Storage (
src/lib/token-storage.ts
) - Securely stores OAuth tokens - Basecamp Client (
src/lib/basecamp-client.ts
) - Basecamp API client library - Type Definitions (
src/types/basecamp.ts
) - Complete TypeScript interfaces - Configuration Scripts:
- NPM scripts for setup, authentication, and config generation
- Built-in TypeScript compilation and testing
- π΄ Red/Yellow indicator: Run
npm run setup
to build the project and dependencies - π΄ "0 tools available": Project not built or dependencies missing - run setup script
- π΄ "Tool not found" errors: Restart your client (Cursor/Claude Desktop) completely
β οΈ Missing BASECAMP_ACCOUNT_ID: Add to.env
file, then re-run the config generator
Problem: Server won't start
# Test if MCP server works:
node dist/index.js
# If this fails, run: npm run build
Problem: Wrong Node.js version
node --version # Must be 18+
# If too old, install newer Node.js and re-run setup
Problem: Authentication fails
# Check OAuth flow:
npm run auth
# Visit http://localhost:8000 and complete login
Cursor config location: ~/.cursor/mcp.json
(macOS/Linux) or %APPDATA%\Cursor\mcp.json
(Windows)
Claude Desktop config location: ~/Library/Application Support/Claude/claude_desktop_config.json
(macOS)
{
"mcpServers": {
"basecamp": {
"command": "node",
"args": ["/full/path/to/your/project/dist/index.js"],
"cwd": "/full/path/to/your/project",
"env": {
"BASECAMP_ACCOUNT_ID": "your_account_id"
}
}
}
}
If you don't know your Basecamp account ID:
- Log into Basecamp in your browser
- Look at the URL - it will be like
https://3.basecamp.com/4389629/projects
- The number (4389629 in this example) is your account ID
- Keep your
.env
file secure and never commit it to version control - The OAuth tokens are stored locally in
oauth_tokens.json
- This setup is designed for local development use
This TypeScript implementation was inspired by and built upon the excellent foundation provided by the original Python Basecamp MCP Server.
Thank you to the original Python project maintainers for creating a solid foundation that enabled this TypeScript adaptation! π
This project is licensed under the MIT License.