Basecamp Classic MCP Server
Enables interaction with Basecamp Classic (the original Basecamp) through its API, providing tools for managing projects, to-do lists, messages, comments, people, milestones, and time entries.
README
Basecamp Classic MCP Server
An MCP server for the Basecamp Classic API, built with FastMCP.
Setup
uv sync
Configuration
Set these environment variables before running:
| Variable | Description |
|---|---|
BASECAMP_URL |
Your Basecamp account URL, e.g. https://yourcompany.basecamphq.com |
BASECAMP_USERNAME |
Your Basecamp username or API token |
BASECAMP_PASSWORD |
Your Basecamp password (or X if using an API token) |
To use an API token instead of password: set BASECAMP_USERNAME to your token and BASECAMP_PASSWORD to X.
Running
# stdio (for Claude Desktop / MCP clients)
uv run python server.py
# or via entry point
uv run basecamp-classic-mcp
Development
Use the MCP Inspector to interactively test tools in a browser UI:
uv run --env-file .env fastmcp dev inspector server.py:mcp
Claude Desktop configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"basecamp-classic": {
"command": "uv",
"args": ["run", "--directory", "/path/to/basecamp-classic-mcp", "python", "server.py"],
"env": {
"BASECAMP_URL": "https://yourcompany.basecamphq.com",
"BASECAMP_USERNAME": "your-api-token",
"BASECAMP_PASSWORD": "X"
}
}
}
}
Available Tools
Projects
list_projects— List all active projectsget_project(project_id)— Get project details
To-do Lists
list_todo_lists(project_id)— List to-do lists in a projectget_todo_list(todo_list_id)— Get a to-do list with its items
To-do Items
list_todo_items(todo_list_id)— List items in a to-do listcreate_todo_item(todo_list_id, content, ...)— Create a new to-do itemupdate_todo_item(todo_item_id, ...)— Update an existing to-do itemcomplete_todo_item(todo_item_id)— Mark an item completeuncomplete_todo_item(todo_item_id)— Mark an item incompletedelete_todo_item(todo_item_id)— Delete a to-do item
Messages
list_messages(project_id)— List recent messages in a projectget_message(message_id)— Get a message with its bodycreate_message(project_id, title, body, ...)— Post a new message
Comments
list_comments(message_id)— List comments on a messagecreate_comment(message_id, body)— Add a comment to a message
People
list_people— List all people in the accountget_person(person_id)— Get a person's detailsget_current_person— Get the authenticated user's details
Milestones
list_milestones(project_id)— List milestones in a projectcomplete_milestone(milestone_id)— Mark a milestone completeuncomplete_milestone(milestone_id)— Mark a milestone incomplete
Time Entries
list_time_entries(project_id)— List time entries for a projectcreate_time_entry(project_id, date, hours, description, ...)— Log time on a project
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.