scope_generate_script, scope_replay_remote). Pro tier has read access to captures, sessions, remotes, history, and watchdog state.
Open the AuroraScope Dashboard and copy your token from the Account tab. It looks like scp_xxxxxxxxxxxxxxxx.
Run this in your terminal:
claude mcp add aurorascope \ --transport http \ --url https://aurorahub.net/mcp/jsonrpc \ --header "Authorization: Bearer scp_YOUR_TOKEN_HERE"
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"aurorascope": {
"transport": "http",
"url": "https://aurorahub.net/mcp/jsonrpc",
"headers": {
"Authorization": "Bearer scp_YOUR_TOKEN_HERE"
}
}
}
}
Open Cursor settings → MCP → Add Server. Paste:
{
"name": "aurorascope",
"url": "https://aurorahub.net/mcp/jsonrpc",
"headers": { "Authorization": "Bearer scp_YOUR_TOKEN_HERE" }
}
Both support remote MCP via HTTP. Use the URL https://aurorahub.net/mcp/jsonrpc with the same Authorization header pattern.
From any HTTP client (curl, Postman, etc):
curl -X POST https://aurorahub.net/mcp/jsonrpc \
-H "Authorization: Bearer scp_YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
You should see a response listing all available tools. If you get 401 Unauthenticated, double-check the token.