Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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.md

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 projects
  • get_project(project_id) — Get project details

To-do Lists

  • list_todo_lists(project_id) — List to-do lists in a project
  • get_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 list
  • create_todo_item(todo_list_id, content, ...) — Create a new to-do item
  • update_todo_item(todo_item_id, ...) — Update an existing to-do item
  • complete_todo_item(todo_item_id) — Mark an item complete
  • uncomplete_todo_item(todo_item_id) — Mark an item incomplete
  • delete_todo_item(todo_item_id) — Delete a to-do item

Messages

  • list_messages(project_id) — List recent messages in a project
  • get_message(message_id) — Get a message with its body
  • create_message(project_id, title, body, ...) — Post a new message

Comments

  • list_comments(message_id) — List comments on a message
  • create_comment(message_id, body) — Add a comment to a message

People

  • list_people — List all people in the account
  • get_person(person_id) — Get a person's details
  • get_current_person — Get the authenticated user's details

Milestones

  • list_milestones(project_id) — List milestones in a project
  • complete_milestone(milestone_id) — Mark a milestone complete
  • uncomplete_milestone(milestone_id) — Mark a milestone incomplete

Time Entries

  • list_time_entries(project_id) — List time entries for a project
  • create_time_entry(project_id, date, hours, description, ...) — Log time on a project

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Communication servers.