- Explore MCP Servers
- Basecamp-MCP-Server
Basecamp Mcp Server
What is Basecamp Mcp Server
Basecamp-MCP-Server is an integration server that allows users to interact with the Basecamp 3+ API using the Magic Copy Paste (MCP) protocol, facilitating direct communication between the Cursor application and Basecamp.
Use cases
Use cases for Basecamp-MCP-Server include automating project updates, retrieving project information, managing team communications through Campfire chat, and integrating with AI tools like Composio to enhance productivity.
How to use
To use Basecamp-MCP-Server, clone the repository, set up a virtual environment, install dependencies, and configure the required environment variables. Start the OAuth app and the MCP server, then authenticate through the OAuth flow. Finally, connect Cursor to the MCP server to interact with Basecamp.
Key features
Key features of Basecamp-MCP-Server include OAuth 2.0 authentication, secure token storage, a robust MCP protocol implementation, enhanced search utilities for Basecamp resources, and integration capabilities with Composio for AI-powered workflows.
Where to use
Basecamp-MCP-Server can be used in project management, team collaboration, and workflow automation environments where Basecamp is utilized, particularly for teams looking to streamline their communication and task management processes.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Basecamp Mcp Server
Basecamp-MCP-Server is an integration server that allows users to interact with the Basecamp 3+ API using the Magic Copy Paste (MCP) protocol, facilitating direct communication between the Cursor application and Basecamp.
Use cases
Use cases for Basecamp-MCP-Server include automating project updates, retrieving project information, managing team communications through Campfire chat, and integrating with AI tools like Composio to enhance productivity.
How to use
To use Basecamp-MCP-Server, clone the repository, set up a virtual environment, install dependencies, and configure the required environment variables. Start the OAuth app and the MCP server, then authenticate through the OAuth flow. Finally, connect Cursor to the MCP server to interact with Basecamp.
Key features
Key features of Basecamp-MCP-Server include OAuth 2.0 authentication, secure token storage, a robust MCP protocol implementation, enhanced search utilities for Basecamp resources, and integration capabilities with Composio for AI-powered workflows.
Where to use
Basecamp-MCP-Server can be used in project management, team collaboration, and workflow automation environments where Basecamp is utilized, particularly for teams looking to streamline their communication and task management processes.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Basecamp MCP Integration
This project provides a MCP (Model Context Protocol) integration for Basecamp 3, allowing Cursor to interact with Basecamp directly through the MCP protocol.
Quick Setup for Cursor
Prerequisites
- Python 3.7+
- A Basecamp 3 account
- A Basecamp OAuth application (create one at https://launchpad.37signals.com/integrations)
Step-by-Step Instructions
-
Clone and setup the project:
git clone <repository-url> cd basecamp-mcp python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate pip install --upgrade pip pip install -r requirements.txt -
Create your
.envfile with your Basecamp OAuth credentials:BASECAMP_CLIENT_ID=your_client_id_here BASECAMP_CLIENT_SECRET=your_client_secret_here BASECAMP_REDIRECT_URI=http://localhost:8000/auth/callback BASECAMP_ACCOUNT_ID=your_account_id_here USER_AGENT="Your App Name ([email protected])" FLASK_SECRET_KEY=any_random_string_here MCP_API_KEY=any_random_string_here -
Authenticate with Basecamp:
python oauth_app.pyVisit http://localhost:8000 and complete the OAuth flow.
-
Generate and install Cursor configuration:
python generate_cursor_config.pyThis script will:
- Generate the correct MCP configuration with full paths
- Automatically detect your virtual environment
- Include the BASECAMP_ACCOUNT_ID environment variable
- Update your Cursor configuration file automatically
-
Restart Cursor completely (quit and reopen, not just reload)
-
Verify in Cursor:
- Go to Cursor Settings → MCP
- You should see “basecamp” with a green checkmark
- Available tools: “get_projects”, “search_basecamp”, “get_project”, etc.
Test Your Setup
# Quick test the MCP server
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}' | python mcp_server_cli.py
# Run automated tests
python -m pytest tests/ -v
Available MCP Tools
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 item
Example Cursor Usage
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”
Architecture
The project consists of:
- OAuth App (
oauth_app.py) - Handles OAuth 2.0 flow with Basecamp - MCP Server (
mcp_server_cli.py) - Implements MCP protocol for Cursor - Token Storage (
token_storage.py) - Securely stores OAuth tokens - Basecamp Client (
basecamp_client.py) - Basecamp API client library - Search Utilities (
search_utils.py) - Search across Basecamp resources
Troubleshooting
Common Issues
- Yellow indicator (not green): Check that paths in Cursor config are correct
- “No tools available”: Make sure you completed OAuth authentication first
- “Tool not found” errors: Restart Cursor completely and check
mcp_cli_server.log - Missing BASECAMP_ACCOUNT_ID: The config generator automatically includes this from your
.envfile
Configuration Issues
If automatic configuration doesn’t work, manually edit your Cursor MCP configuration:
On macOS/Linux: ~/.cursor/mcp.json
On Windows: %APPDATA%\Cursor\mcp.json
{
"mcpServers": {
"basecamp": {
"command": "/full/path/to/your/project/venv/bin/python",
"args": [
"/full/path/to/your/project/mcp_server_cli.py"
],
"cwd": "/full/path/to/your/project",
"env": {
"PYTHONPATH": "/full/path/to/your/project",
"VIRTUAL_ENV": "/full/path/to/your/project/venv",
"BASECAMP_ACCOUNT_ID": "your_account_id"
}
}
}
}
Key Requirements
Based on Cursor community forums, the following are essential:
- Full executable paths (not just “python”)
- Proper environment variables (PYTHONPATH, VIRTUAL_ENV, BASECAMP_ACCOUNT_ID)
- Correct working directory (cwd)
- MCP protocol compliance (our server handles this correctly)
Finding 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
Security Notes
- Keep your
.envfile 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
License
This project is licensed under the MIT License.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










