Summit MCP server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Summit MCP serverShow me the CRO audit findings for my homepage"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Summit MCP server
Bring Summit's conversion-audit insights into your coding agent. Hand Claude Code / Codex / Gemini CLI a Summit audit and have it implement the fixes — grounded in real CRO analysis with exact selectors and before→after copy.
Install
Nothing to install — any MCP client can launch it straight from npm:
npx -y @antmind-ai/summit-mcpOr install the summit-mcp command globally:
npm install -g @antmind-ai/summit-mcpRequires Node.js ≥ 18.17.
Related MCP server: Rampify MCP Server
Tools
Tool | What it does |
| Fetch an audit by share token or link. Returns score/grade, what the business is, a screenshot URL, and ranked findings (selector, current vs suggested copy, rationale, estimated lift). |
| Turn the audit into an ordered, code-ready checklist — each step has a priority tier, selector, action, before→after, and expected lift. |
| Findings filtered to one tier ( |
| Kick off a new audit (1 free per email). Returns a share link to poll. |
| Sites in your workspace. |
| Experiments + status/winner. |
| KPI rollup: visitors/conversions (7d), running experiments, pending reviews, winners shipped. |
| Everything waiting on human sign-off — proposed findings + built experiments. |
| Approve a fix → builds an A/B experiment + variants (Pro). |
| Dismiss a proposed fix. |
| Approve a built experiment for launch. |
| Start serving the A/B test live. |
| Bayesian verdict: leader, lift, P(beat control), significance. |
| Snippet install check + 7-day visitors/conversions/rage clicks. |
The first four work off a public share token — no auth required. The workspace tools need
SUMMIT_API_TOKEN + SUMMIT_WORKSPACE_ID and cover the full Study → Approve → Ship loop, so
an agent can go from audit to launched experiment to measured result without leaving the editor.
Tools marked mutates change workspace state (they never touch your live site directly — variants
only serve after an experiment is explicitly launched).
Getting the two workspace values (a Pro feature — minting a token requires a paid plan):
sign in and open Settings → Summit MCP tokens in the app to generate SUMMIT_API_TOKEN (shown
once) and copy your SUMMIT_WORKSPACE_ID. The web docs at
trysummit.ai/docs walk through it and pre-fill the config with your
workspace ID. A token is scoped to a single workspace and can be revoked anytime.
Configuration (env)
Var | Default | Notes |
|
| Summit backend root (the server appends |
| – | Bearer token for the workspace tools. Generate in Settings → Summit MCP tokens (Pro). Optional — omit for audit-only. |
| – | Workspace UUID for the workspace tools (shown next to the token in Settings). Optional — omit for audit-only. |
|
| Per-request timeout (seconds). |
Register with your agent
The audit tools work with just SUMMIT_API_BASE_URL. To unlock the workspace loop, add
SUMMIT_API_TOKEN + SUMMIT_WORKSPACE_ID (from Settings → Summit MCP tokens; see above).
Claude Code
claude mcp add summit \
--env SUMMIT_API_BASE_URL=https://api.trysummit.ai \
--env SUMMIT_API_TOKEN=smt_your_token_here \
--env SUMMIT_WORKSPACE_ID=your_workspace_id \
-- npx -y @antmind-ai/summit-mcpCodex CLI — ~/.codex/config.toml
[mcp_servers.summit]
command = "npx"
args = ["-y", "@antmind-ai/summit-mcp"]
env = { SUMMIT_API_BASE_URL = "https://api.trysummit.ai", SUMMIT_API_TOKEN = "smt_your_token_here", SUMMIT_WORKSPACE_ID = "your_workspace_id" }Gemini CLI — ~/.gemini/settings.json
{
"mcpServers": {
"summit": {
"command": "npx",
"args": ["-y", "@antmind-ai/summit-mcp"],
"env": {
"SUMMIT_API_BASE_URL": "https://api.trysummit.ai",
"SUMMIT_API_TOKEN": "smt_your_token_here",
"SUMMIT_WORKSPACE_ID": "your_workspace_id"
}
}
}
}(Any MCP-aware client works — point it at npx -y @antmind-ai/summit-mcp, or at the summit-mcp command if
installed globally, over stdio. Omit the token + workspace-id envs to use just the free audit tools.)
Example agent flow
You: Audit https://moonsign.co.in and fix the top 3 conversion issues.
Agent → summit_run_audit(url="https://moonsign.co.in", email="me@co.com")
← { share_url: ".../audit?r=TOK", status: "queued" }
Agent → summit_implementation_plan(report="TOK") # poll until completed
← { steps: [ { selector: "a.cta", before: "Learn more",
after: "Get my free reading", expected_lift_pct: 12 }, … ] }
Agent then edits the codebase per each step.Or drive the whole loop against your workspace (auth env vars set):
You: Anything waiting on me? Approve the highest-lift fix and launch it.
Agent → summit_review_queue()
← { findings: [ { id: "…", title: "Weak hero CTA", estimated_lift: 14, … } ], experiments: [] }
Agent → summit_approve_finding(finding_id="…") # builds experiment + variants
Agent → summit_approve_experiment(experiment_id="…") # after QA
Agent → summit_launch_experiment(experiment_id="…")
… later …
Agent → summit_experiment_results(experiment_id="…")
← { winner_key: "b", leader_prob: 0.97, is_significant: true }Develop
npm install
npm test # node:test — pure transforms + mocked-fetch tool tests, no networkThe package is plain ESM JavaScript with no build step. Runtime dependencies are just
@modelcontextprotocol/sdk and zod.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Antmind-ai/summit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server