Caboose MCP

Caboose MCP

A comprehensive personal AI toolserver that exposes 105 tools across 25 groups—including Slack, Docker, and calendar management—to Claude and VS Code. It features a Go-based MCP server integrated with a custom VS Code extension and n8n workflow automation for streamlined personal productivity.

Category
Visit Server

README

caboose-mcp

Personal AI toolserver monorepo. Exposes 105 MCP tools to Claude and VS Code via a Go server, with a companion VS Code extension and n8n workflow automation.

Packages

Package Description
packages/server Go MCP server — 105 tools across 25 groups (focus, slack, docker, calendar, etc.)
packages/vscode-extension VS Code sidebar + status bar; connects to the server over stdio or HTTP
packages/n8n Custom n8n image with pre-loaded caboose-mcp workflows

Quick Start (Docker)

# 1. Clone
git clone https://github.com/caboose-mcp/caboose-mcp
cd caboose-mcp

# 2. Configure
cp .env.example .env
# Edit .env — at minimum set SLACK_TOKEN, GITHUB_TOKEN, GPG_KEY_ID

# 3. Start
docker compose -f docker/docker-compose.yml up -d

# MCP server:  http://localhost:8080/mcp
# n8n:         http://localhost:5678

The server mounts your ~/.claude directory so all data (notes, sessions, secrets, audit logs) persists on the host. n8n workflows are auto-imported on first run.

Quick Start (Local / Claude stdio)

# Build the server
cd packages/server
export PATH=$PATH:/usr/local/go/bin
go build -o caboose-mcp .

# Add to Claude's .mcp.json
{
  "mcpServers": {
    "caboose": {
      "type": "stdio",
      "command": "/path/to/packages/server/caboose-mcp"
    }
  }
}

VS Code Extension

cd packages/vscode-extension
pnpm install
pnpm compile
# Press F5 in VS Code to launch the extension host

Configure via Settings → Caboose MCP:

  • cabooseMcp.transport: http (default) or stdio
  • cabooseMcp.host / cabooseMcp.port: point at the Docker server
  • cabooseMcp.binaryPath: path to the built binary (stdio mode)

n8n Integration

Three workflows are pre-loaded:

  • Event Receiver — receives gate_fired, source_changed, focus_started, etc.
  • Daily Digest — 8am: calls source_digest + si_tech_digest
  • Nightly Scan — midnight: calls si_scan_dir + source_check

See docs/n8n.md for full documentation.

Infrastructure (Terraform)

Provisions AWS resources: IAM user (Bedrock), S3 bucket (cloudsync), ECR repo (Docker images).

cd terraform/aws
cp terraform.tfvars.example terraform.tfvars
# Edit terraform.tfvars

terraform init
terraform plan
terraform apply

See terraform/aws/README.md for details.

Development

Root scripts (pnpm)

pnpm build              # compile extension + build Go server
pnpm server:build       # Go build only
pnpm extension:compile  # tsc compile only
pnpm extension:package  # package .vsix
pnpm docker:build       # docker build
pnpm docker:up          # docker compose up -d
pnpm docker:down        # docker compose down
pnpm docker:logs        # follow compose logs

Go server

cd packages/server
go build -o caboose-mcp .
go vet ./...

No database or migration step — the server uses flat JSON files under ~/.claude/.

Adding a tool

# From Claude or the extension, call:
tool_scaffold   # generates a new tools/mytool.go skeleton
tool_write      # writes the file
tool_rebuild    # runs go build

Or edit packages/server/tools/ directly and run go build.

Releases

Tag pattern Action
server/v1.2.3 Builds Go binary for linux/amd64 + arm64; pushes Docker image to GHCR
extension/v0.2.0 Packages .vsix; creates GitHub Release with the asset attached

Repository layout

packages/
  server/              Go MCP server
  vscode-extension/    VS Code extension (TypeScript)
  n8n/                 Custom n8n image + pre-built workflow JSON
docker/
  Dockerfile           Multi-stage Go build → alpine runtime
  docker-compose.yml   server + n8n services
docs/
  n8n.md               n8n integration guide
terraform/
  aws/                 IAM, S3, ECR
.github/workflows/
  ci.yml               Go vet/build + TS compile on PR
  docker.yml           Build + push to GHCR on main / server/v* tag
  extension.yml        Package + release VSIX on extension/v* tag

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