Equall
AI agent (MCP)

Set up the connection

Point your AI agent at the Equall MCP server and authorize it in your browser.

Add this to your agent's MCP configuration (Cursor, Claude, …) — just the URL, no token:

{
    "mcpServers": {
        "equall": {
            "url": "https://equall-mcp-production.up.railway.app/mcp"
        }
    }
}

Then authorize it once in your browser. In Claude Code, for example:

claude mcp add --scope user equall https://equall-mcp-production.up.railway.app/mcp
claude mcp login equall

Your browser opens on the Equall authorization screen — sign in with GitHub if you aren't already, review what the client is asking for, and Authorize. That's it: the connection refreshes itself, there is nothing to copy or re-paste.

Your agent now discovers all six tools — connect, scan, conformance, list issues, list pages, and add a page.

You only ever see your own workspace's data: every read and write is checked against the workspace you authorized.

If your client can't do the browser flow

As a fallback, you can pass your dashboard session token by hand — add "headers": { "Authorization": "Bearer <YOUR_TOKEN>" } to the config above. It expires after ~1 hour and must be re-pasted, so prefer the browser flow whenever your client supports it.

On this page