Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cantrip": {
"env": {
"CANTRIP_API_KEY": "your-api-key"
},
"args": [
"-y",
"mcp-server-cantrip"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Cantrip — AI-powered GTM engine for solo founders
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-server-cantrip' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-server-cantrip against OSV.dev.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing
DataForSEO API modelcontextprotocol server
MCP server for the PostFast API — schedule and manage social media posts via AI tools
Claude Code plugin: 115 commands, 25 agents, 64 scripts, 67 MCP servers, 143 reference files. Eval/QA layer (hallucination detection, claim verification, A+ through F grading). Multilingual (Sarvam AI, DeepL, Google Cloud Translation). Full execution with approval workflow.
A free SEO research tool using Model Context Protocol (MCP) powered by Ahrefs data. Get backlink analysis, keyword research, traffic estimation, and more — directly in your AI-powered IDE.
MCP Security Weekly
Get CVE alerts and security updates for io.github.ozten/cantrip and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Cantrip helps technical founders find their first customers with structured GTM workflows.
Works with Claude Code / Claude Desktop / Cursor — any MCP-compatible agent.
claude mcp add cantrip -e CANTRIP_API_KEY=your-api-key -- npx -y mcp-server-cantrip
"Initialize a Cantrip project for my product: [describe yours in one sentence]"
The Quick start command above covers Claude Code. Verify it worked with claude mcp list or the /mcp command inside a session.
All MCP clients use the same JSON block. Add it to the appropriate config file:
| Client | Config file |
|---|---|
| Claude Code (manual) | ~/.claude.json |
| Claude Code (project-scoped) | .mcp.json in project root |
| Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json |
| Cursor | .cursor/mcp.json (project) or ~/.cursor/mcp.json (global) |
{
"mcpServers": {
"cantrip": {
"command": "npx",
"args": ["-y", "mcp-server-cantrip"],
"env": {
"CANTRIP_API_KEY": "your-api-key"
}
}
}
}
Note: The
-yflag is required — without it,npxprompts for confirmation which hangs over stdio.
Windows (not WSL): Use
"command": "cmd"with"args": ["/c", "npx", "-y", "mcp-server-cantrip"].
Project-scoped with teams: Use
"${CANTRIP_API_KEY}"in the env value so each developer sets the key in their shell profile.
.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.
After connecting Cantrip, try these prompts in order:
Server not found / no tools appear:
claude mcp list (Claude Code) or /mcp inside a session to check connection status.~/.claude.json or .mcp.json, not ~/.claude/mcp.json.Server hangs on startup:
-y in the npx args. Without it, npx waits for interactive confirmation that can never arrive over stdio."Cannot reach Cantrip API" errors:
CANTRIP_API_KEY is set in the env block of your MCP config.https://api.cantrip.ai is reachable from your network.Windows "Connection closed" errors:
"command": "cmd" with "args": ["/c", "npx", "-y", "mcp-server-cantrip"].Agent (Claude, etc.) ── MCP protocol (stdio) ──> mcp-server-cantrip ── HTTPS POST ──> https://api.cantrip.ai
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 API. Zero business logic — identical contract to the CLI and React UI.
| Tool | Descr