Tutorial
Connect Claude via MCP
Expose codingassist.bot as a Model Context Protocol server so Claude can call it.
codingassist.bot ships an MCP server that exposes the review surface as a set of tools Claude (and any MCP-compatible agent) can call.
Quick start
Generate an MCP token
From the dashboard go to Settings → MCP and click Generate token. Copy it — you won't see it again.
Configure your MCP client
Add the codingassist.bot server to your MCP client's config:
{ "mcpServers": { "codingassist": { "url": "https://mcp.codingassist.bot", "auth": { "type": "bearer", "token": "$CODINGASSIST_MCP_TOKEN" } } } }Test from Claude Desktop
Open Claude Desktop, type
/tools, and you should seecodingassist.review,codingassist.findings, andcodingassist.tracein the list.
Available tools
| Tool | Description |
|---|---|
codingassist.review | Trigger a review on a PR |
codingassist.findings | Fetch findings for a PR |
codingassist.trace | Pull the full reasoning trace |
codingassist.policies | List active policies |
Example prompt
"Use codingassist to review PR #42 in acme/web and summarise any findings of severity ≥ warn."
Claude will call codingassist.review then codingassist.findings, and produce a synthesis.
Related
Was this page helpful?