Skip to main content
Connect to ARIS MCP over HTTP — no local install, no npx, no Node.js required.

URL

https://dqgynnlsclfbqysauesf.supabase.co/functions/v1/mcp

Configuration

For any MCP client that supports remote servers:
{
  "mcpServers": {
    "aris": {
      "url": "https://dqgynnlsclfbqysauesf.supabase.co/functions/v1/mcp",
      "headers": {
        "X-ARIS-API-Key": "aris_yourkey"
      }
    }
  }
}

Protocol

The hosted endpoint uses JSON-RPC 2.0 over HTTP POST.

List available tools

curl -X POST \
  "https://dqgynnlsclfbqysauesf.supabase.co/functions/v1/mcp" \
  -H "Content-Type: application/json" \
  -H "X-ARIS-API-Key: aris_yourkey" \
  -d '{"jsonrpc": "2.0", "id": 1, "method": "tools/list"}'

Call a tool

curl -X POST \
  "https://dqgynnlsclfbqysauesf.supabase.co/functions/v1/mcp" \
  -H "Content-Type: application/json" \
  -H "X-ARIS-API-Key: aris_yourkey" \
  -d '{
    "jsonrpc": "2.0",
    "id": 2,
    "method": "tools/call",
    "params": {
      "name": "search_listings",
      "arguments": {"city": "Austin", "maxPrice": 500000, "minBeds": 3}
    }
  }'

Local vs. hosted

Local (stdio)Hosted (HTTP)
LatencyLowerSlightly higher
Installnpx on first useNone
Node.js requiredYesNo
Best forCursor, Claude DesktopRemote agents, serverless