IMVASA Audit Tool exposes a public MCP server so Claude, ChatGPT, Cursor, and any other MCP-capable client can run SEO + GEO audits directly from chat. No API key required.
https://seoaudit.imvasa.dev/mcpTransport: HTTP (streamable). Auth: none. Public tools only.
Run a full free SEO + GEO audit on any public URL. Returns scores, priority fixes, and a shareable report link.
Try: "Audit https://stripe.com and tell me the top 3 GEO issues."
Fetch a previously-run report by internal id or public share id.
Try: "Get the full report for share id abc123."
Open Settings, Developer, Edit Config, then add:
{
"mcpServers": {
"imvasa-audit": {
"url": "https://seoaudit.imvasa.dev/mcp"
}
}
}Restart Claude. You'll see the IMVASA Audit Tool tools appear in the tool picker.
https://seoaudit.imvasa.dev/mcpAdd to ~/.cursor/mcp.json:
{
"mcpServers": {
"imvasa-audit": {
"url": "https://seoaudit.imvasa.dev/mcp"
}
}
}Any MCP client that supports HTTP transport can connect. Point it at the server URL above. No authentication headers are required.
The MCP Streamable HTTP endpoint requires the client to advertise that it can handle streaming responses. A plain browser request returns 406 Not Acceptable. Real MCP clients (Claude, ChatGPT, Cursor) send the correct header automatically.
Required header:
Accept: application/json, text/event-streamQuick browser-friendly ping to confirm the server is reachable.
curl -s https://seoaudit.imvasa.dev/api/mcp/healthReturns server metadata, version, and the list of advertised tools.
curl -s https://seoaudit.imvasa.dev/api/mcp/versionReturns every tool name with its input JSON Schema and a standard MCP output shape. Use this to validate requests before calling /mcp.
curl -s https://seoaudit.imvasa.dev/api/mcp/toolsRaw JSON-RPC tool listing against the MCP endpoint. Use the Accept header shown above.
curl -s -X POST https://seoaudit.imvasa.dev/mcp \
-H "Accept: application/json, text/event-stream" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'