MCP Hub
Back to servers

cantrip

MCP server for Cantrip — AI-powered GTM engine for solo founders

Registry
Updated
Mar 9, 2026

Quick Install

npx -y mcp-server-cantrip

mcp-server-cantrip

MCP (Model Context Protocol) server for Cantrip — the AI-powered GTM engine for solo founders.

This server lets any MCP-compatible agent (Claude, Cursor, etc.) interact with Cantrip's project management, gap analysis, and entity CRUD through the standard MCP tool protocol.

Architecture

Agent (Claude, etc.) ── MCP protocol (stdio) ──> mcp-server-cantrip ── HTTP POST ──> cantrip daemon

The MCP server is a thin translation layer. It converts MCP tool calls into {command, args, flags} JSON envelopes and POSTs them to the cantrip daemon. Zero business logic — identical contract to the CLI and React UI.

Installation

npm install -g mcp-server-cantrip

Or run directly:

npx mcp-server-cantrip

Configuration

Claude Desktop

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "cantrip": {
      "command": "npx",
      "args": ["mcp-server-cantrip"],
      "env": {
        "CANTRIP_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

Add to ~/.claude/mcp.json globally:

{
  "mcpServers": {
    "cantrip": {
      "command": "npx",
      "args": ["mcp-server-cantrip"],
      "env": {
        "CANTRIP_API_KEY": "your-api-key"
      }
    }
  }
}

Environment Variables

VariableDefaultDescription
CANTRIP_API_KEY(none)Your Cantrip API key

Project Context (.cantrip.json)

Each project directory contains a .cantrip.json file that tells Cantrip which project to target:

{
  "project": "my-saas"
}

This file is created automatically by cantrip_init (new project) or cantrip_connect (existing project). The agent manages it — you don't need to create it manually.

Multiple projects on the same machine? Each project directory gets its own .cantrip.json. The agent switches context by working in the right directory.

Tools (17)

Setup

ToolDescription
cantrip_connectConnect workspace to a project (reads/writes .cantrip.json)
cantrip_statusCheck if the daemon is running
cantrip_initCreate a new project and auto-connect

Core Commands

ToolDescription
cantrip_snapshotProject overview, drill into entity types
cantrip_nextList gap-analysis opportunities
cantrip_next_promptGenerate a context-rich LLM prompt for an opportunity
cantrip_next_runSpawn a background agent for an opportunity
cantrip_historyQuery the audit trail

Review

ToolDescription
cantrip_reviewList items pending review
cantrip_review_acceptAccept an inferred entity
cantrip_review_rejectReject an inferred entity
cantrip_review_resolveResolve an escalation
cantrip_review_dismissDismiss an escalation

Entity CRUD (generic)

ToolDescription
cantrip_entity_listList entities of a type
cantrip_entity_showShow entity detail
cantrip_entity_addCreate a new entity
cantrip_entity_editEdit an existing entity

Supported entity types: icp, pain_point, value_prop, experiment, channel, competitor, contact

License

MIT

Reviews

No reviews yet

Sign in to write a review