npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

basecamp-mcp

v1.1.1

Published

Model Context Protocol (MCP) server for Basecamp integration. Enables LLMs to interact with Basecamp projects, messages, todos, comments, people, and kanban boards.

Readme

Basecamp MCP Server

Model Context Protocol (MCP) server for Basecamp integration. Enables LLMs to interact with Basecamp projects, messages, todos, comments, people, and kanban boards.

Getting Started

The Basecamp MCP server requires Node.js 18+ and works with various MCP clients including Claude Code CLI, Claude Desktop, Cursor, VS Code, and others.

Prerequisites

You need a Basecamp OAuth app. Register one at 37signals Launchpad with the redirect URI set to http://localhost:7652/callback.

Installation

Add the MCP server to your client with your OAuth credentials:

{
  "mcpServers": {
    "basecamp": {
      "command": "npx",
      "args": ["-y", "basecamp-mcp@latest"],
      "env": {
        "BASECAMP_CLIENT_ID": "your_client_id",
        "BASECAMP_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

Claude Code CLI:

claude mcp add basecamp npx basecamp-mcp@latest \
  -e BASECAMP_CLIENT_ID=your_client_id \
  -e BASECAMP_CLIENT_SECRET=your_client_secret

Claude Desktop: Follow the MCP install guide using the JSON config above.

Cursor: Add configuration through Settings → Tools & Integrations → New MCP Server.

VS Code:

code --add-mcp '{"name":"basecamp","command":"npx","args":["-y", "basecamp-mcp@latest"]}'

Authentication

Once the MCP server is running, authenticate using the built-in login tool:

  1. Call basecamp_login — a browser window will open for Basecamp authorization
  2. Authorize the app in your browser
  3. If you have multiple Basecamp accounts, call basecamp_login again with the desired account_id
  4. Done! Credentials are saved to ~/.config/basecamp-mcp/credentials.json

Use basecamp_whoami to check who you're logged in as, and basecamp_logout to remove stored credentials.

Configuration

The server requires these environment variables:

  • BASECAMP_CLIENT_ID — Your Basecamp OAuth client ID
  • BASECAMP_CLIENT_SECRET — Your Basecamp OAuth client secret

Available Tools

Authentication

  • basecamp_login - Authenticate with Basecamp via OAuth browser flow
  • basecamp_logout - Remove stored credentials
  • basecamp_whoami - Show the currently authenticated user

Projects

  • basecamp_list_projects - List all accessible projects with optional filtering
  • basecamp_get_project - Get detailed project information including dock configuration

Messages

  • basecamp_list_messages - List messages in a message board with optional filtering
  • basecamp_list_message_types - List available message types/categories for a project
  • basecamp_get_message - Get single message details
  • basecamp_create_message - Create new message with optional category and draft status
  • basecamp_update_message - Update message with advanced content editing (supports full replacement, append, prepend, search/replace)

TODOs

  • basecamp_get_todoset - Get todo set container with all todo lists
  • basecamp_list_todos - List todos in a list with status filtering (active/archived)
  • basecamp_create_todo - Create new todo with optional description
  • basecamp_complete_todo - Mark todo as complete
  • basecamp_uncomplete_todo - Mark todo as incomplete

Comments

  • basecamp_list_comments - List comments on any resource (works universally on all recording types)
  • basecamp_create_comment - Add comment to any resource
  • basecamp_update_comment - Update comment with advanced content editing (supports full replacement, append, prepend, search/replace)

People

  • basecamp_get_me - Get personal information for the authenticated user
  • basecamp_list_people - List all people with optional filtering by name, email, or title
  • basecamp_get_person - Get person details

Kanban

  • basecamp_list_kanban_columns - List all columns in a kanban board
  • basecamp_list_kanban_cards - List cards in a column with steps and assignees
  • basecamp_get_kanban_card - Get complete details of a specific card
  • basecamp_create_kanban_card - Create new card with title, content, and optional checklist steps
  • basecamp_update_kanban_card - Update card with advanced content editing (supports full replacement, append, prepend, search/replace, plus title, due date, assignees, notifications, and complete step array management)
  • basecamp_move_kanban_card - Move a card to a different column and/or position

Activity

  • basecamp_list_recordings - Browse recent activity globally or across specific projects, with filtering by type, date range, person, and text search. All filters support multiple values for OR-matching (e.g., multiple project IDs, person IDs, types, or search terms)
  • basecamp_list_campfire_messages - Browse chat messages from Campfires with filtering by campfire, person, text content, and date range. All filters support multiple values for OR-matching

Development

# Install dependencies
npm install

# Run type checking
npx tsc --noEmit

# Build
npm run build

# Clean build artifacts
npm run clean

License

MIT