Connect Boosthis to Claude
Boosthis is an invite-only performance toolkit for React Native, Node.js, Python, the web, Java, and Go. Connecting it to Claude lets Claude read your projects' performance data — scores, issues, and suggested fixes — and answer questions about them. The connection is read-only: Claude can look at your projects, never change them.
Before you start
You need a Boosthis project key. Keys are created from your Boosthis dashboard when a project is set up (Boosthis is invite-only; if you don't have access yet, contact support@boosthis.com). The key is shown once at creation — if you've lost it, create a new key from the dashboard.
Everywhere this page shows <your‑project‑key>, paste your real key.
Claude on the web & desktop app
Claude's connector form takes a single URL, so your key rides inside the address:
- Go to Settings → Connectors.
- Press Add custom connector. Name it
Boosthis. - Paste this into Remote MCP server URL (with your real key in place of the placeholder):
https://www.boosthis.com/mcp?key=<your‑project‑key>
- Leave the OAuth Client ID / Secret fields empty and press Add.
- In a chat, enable Boosthis from the tools menu, then ask Claude to list your Boosthis projects.
Claude Code (terminal)
One command in your project folder is the whole setup:
claude mcp add --transport http boosthis https://www.boosthis.com/mcp --header "Authorization: Bearer <your‑project‑key>"
JSON config (Claude Desktop and similar)
Tools that read MCP servers from a JSON config file can use header authentication — the preferred style, because the key stays out of the URL:
{
"mcpServers": {
"boosthis": {
"type": "http",
"url": "https://www.boosthis.com/mcp",
"headers": {
"Authorization": "Bearer <your‑project‑key>"
}
}
}
}
Boosthis accepts the key both ways, and a header always wins when both are present.
Verify it works
In a new conversation, ask Claude:
If the connection is healthy, Claude fetches your projects over it and answers with live data. If it reports an authorization problem, re-check that the key was pasted exactly (no extra spaces) and that it hasn't been revoked.
Keeping your key safe
- Your key identifies your projects — don't share it or commit it to a repository.
- Prefer the header (
Authorization: Bearer …) style wherever the tool supports it. - If a key leaks, revoke it from your Boosthis dashboard and create a new one. Revocation is immediate.
- All access through this connection is read-only, and everything Boosthis stores passes a strict PII guard first — see our Privacy Policy.