Basecamp Classic MCP Server
Allows interaction with a Basecamp Classic account to manage projects, to-do lists, to-do items, messages, comments, people, milestones, and time entries.
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 Classic MCP ServerList all active projects"
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 Classic MCP Server
An MCP server for the Basecamp Classic API, built with FastMCP.
Setup
uv syncRelated MCP server: Basecamp MCP Server
Configuration
Set these environment variables before running:
Variable | Description |
| Your Basecamp account URL, e.g. |
| Your Basecamp username or API token |
| Your Basecamp password (or |
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-mcpDevelopment
Use the MCP Inspector to interactively test tools in a browser UI:
uv run --env-file .env fastmcp dev inspector server.py:mcpClaude 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
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/Boian/basecamp-classic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server