Basecamp MCP Server

Basecamp MCP Server

Connects Basecamp workspaces to AI tools, enabling management of projects, messages, todos, and schedules through natural language interactions. Features persistent caching and supports both reading workspace data and performing actions like creating messages and updating todos.

Category
Visit Server

README

Basecamp MCP Server

Connect your Basecamp workspace to Claude and other AI tools via the Model Context Protocol.

Setup

1. Get Basecamp API Credentials

  1. Go to Basecamp and log in
  2. Click your profile → "Settings" → "Personal access tokens" (or "Integrations & apps" → "API credentials")
  3. Create a new token (it needs "all access")
  4. Copy the token
  5. Find your Account ID in the URL when you're in your workspace (e.g., https://3.basecamp.com/ACCOUNT_ID)

2. Set Environment Variables

export BASECAMP_API_TOKEN="your_token_here"
export BASECAMP_ACCOUNT_ID="your_account_id_here"

Or create a .env file in the project root (add to .gitignore):

BASECAMP_API_TOKEN=your_token_here
BASECAMP_ACCOUNT_ID=your_account_id_here

3. Install Dependencies

uv sync

4. Run the Server

uv run python -m basecamp_mcp.server

Or run it directly:

uv run python src/basecamp_mcp/server.py

Features

Tools (Functions Claude Can Call)

  • get_projects - List all Basecamp projects
  • get_project_details - Get detailed info about a project
  • get_messages - Get recent messages from a project
  • get_message_with_comments - Get a specific message with all comments
  • get_todos - Get todo items (with optional filtering by completion)
  • create_message - Create a new message in a project
  • update_todo - Mark a todo as complete/incomplete
  • get_schedules - Get schedules from a project
  • clear_cache - Clear all cached data
  • get_cache_stats - View cache statistics

Resources (Data Claude Can Read)

  • basecamp://projects - List of all projects
  • basecamp://project/{project_id}/summary - Project summary with recent activity

Caching

The server uses SQLite for persistent caching with TTL (Time To Live):

  • Projects: 5 minutes cache
  • Messages: 2 minutes cache
  • Todos: 2 minutes cache
  • Project details: 10 minutes cache

Use get_cache_stats to see cache hit rates and size, or clear_cache to force fresh data.

Project Structure

BaseCampMCP/
├── src/
│   └── basecamp_mcp/
│       ├── __init__.py
│       ├── server.py       # Main MCP server with tools & resources
│       └── cache.py        # SQLite cache manager
├── pyproject.toml          # Project configuration
└── README.md

Integration with Claude Desktop

To use with Claude Desktop:

  1. Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the Windows equivalent
  2. Add the server:
{
  "mcpServers": {
    "basecamp": {
      "command": "uv",
      "args": ["run", "--with", "mcp", "python", "-m", "basecamp_mcp.server"],
      "cwd": "/Users/kaustubh/Documents/BaseCampMCP"
    }
  }
}
  1. Restart Claude Desktop

Development

Testing the Server

# Run with verbose logging
uv run python -m basecamp_mcp.server

Viewing Cache

The cache database is stored in basecamp_cache.db in your working directory. You can inspect it with:

sqlite3 basecamp_cache.db
sqlite> SELECT key, hits, expires_at FROM cache ORDER BY hits DESC;

API Reference

Basecamp API v1 Endpoints Used

  • GET /projects.json - List projects
  • GET /projects/{id}.json - Get project details
  • GET /projects/{id}/messages.json - List messages
  • GET /projects/{id}/messages/{message_id}.json - Get message
  • GET /projects/{id}/messages/{message_id}/comments.json - Get comments
  • GET /projects/{id}/todos.json - List todos
  • GET /projects/{id}/todolists/{list_id}/todos.json - Get todos from list
  • PUT /projects/{id}/todos/{todo_id}.json - Update todo
  • POST /projects/{id}/messages.json - Create message
  • GET /projects/{id}/schedules.json - List schedules

License

MIT

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured