Boosthis

Connect Boosthis to Claude

Works with Claude on the web, the Claude desktop app, and Claude Code.

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:

  1. Go to Settings → Connectors.
  2. Press Add custom connector. Name it Boosthis.
  3. 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>
  1. Leave the OAuth Client ID / Secret fields empty and press Add.
  2. In a chat, enable Boosthis from the tools menu, then ask Claude to list your Boosthis projects.
That URL contains your key — treat the whole URL like a password. If it ever leaks, revoke the key from your Boosthis dashboard and mint a new one; nothing else breaks.

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:

“List my Boosthis projects and give me a quick performance summary.”

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