Docs
Point any MCP-capable agent at the hosted gateway. The 17 free tools work without authentication; the 36+ Pro tools require an API key you receive on the pricing checkout success page.
Quickstart
- Subscribe to Pro or Team on the pricing page.
- Copy the
sv_live_key from the success page (it is only shown once — store it in a password manager immediately). - Paste it into your
claude_desktop_config.json(or Cursor / Zed equivalent) under thesceneviewserver. - Restart your MCP client and prompt away — Pro tool calls are transparently forwarded to the gateway at
https://sceneview-mcp.mcp-tools-lab.workers.dev/mcp.
Claude Desktop
Claude Desktop only supports stdio MCP servers (HTTP transport not yet available), so we ship a lite npm package that runs locally and forwards Pro calls to the gateway. Add a new server to your config file (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"sceneview": {
"command": "npx",
"args": ["-y", "sceneview-mcp@beta"],
"env": {
"SCENEVIEW_API_KEY": "sv_live_YOUR_KEY_HERE"
}
}
}
}Leave env empty ({}) if you only want the 17 free tools — no signup needed. Restart Claude Desktop after editing.
Cursor
Cursor supports HTTP MCP servers natively, so you can talk to the gateway directly. Open Cursor Settings → MCP → Add new:
{
"mcpServers": {
"sceneview": {
"url": "https://sceneview-mcp.mcp-tools-lab.workers.dev/mcp",
"headers": {
"Authorization": "Bearer sv_live_YOUR_KEY_HERE"
}
}
}
}Zed
Zed's context servers support stdio too; use the same sceneview-mcp@beta command as Claude Desktop above. Add it to ~/.config/zed/settings.json under the context_servers section with the SCENEVIEW_API_KEY env var set.
Raw curl
The endpoint speaks Streamable HTTP JSON-RPC. Handy for testing a new key right after checkout:
curl -X POST https://sceneview-mcp.mcp-tools-lab.workers.dev/mcp \
-H "Authorization: Bearer sv_live_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'Local stdio (free mode, zero signup)
If you only want the 17 free tools and no network round-trip at all, install the latest stable package (3.6.x):
npx -y sceneview-mcpThis runs every tool locally. To unlock the 36+ Pro tools later after subscribing, switch to sceneview-mcp@beta and set SCENEVIEW_API_KEY — see the Claude Desktop snippet above.
Usage and rate limits
- Free: 60 calls/hour, 1 000 calls/month, 1 API key
- Pro: 600 calls/hour, 10 000 calls/month, 3 API keys
- Team: 3 000 calls/hour, 50 000 calls/month, 10 API keys
Every /mcp response carries standard X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset headers so clients can pre-empt throttling.
Errors
All errors are valid JSON-RPC 2.0 responses. Common codes:
-32001Unauthorized — bad or missing API key-32002Access denied — Pro tool on the free tier-32029Rate limited — hourly or monthly quota exceeded
Need help?
Open an issue on github.com/sceneview/sceneview or email hello@sceneview.dev.