Documentation

Get your MCP server behind auth in under two minutes.

1. Create a connection

Sign up, open your dashboard, and add your MCP server's URL (e.g. https://my-mcp-server.internal/mcp). You'll get a proxy URL and a one-time bearer token.

2. Point your client at the proxy

Claude Desktop — edit claude_desktop_config.json:

{
  "mcpServers": {
    "my-server": {
      "url": "https://mcp.aiskillhub.info/p/con_xxxx",
      "headers": { "Authorization": "Bearer mcpc_con_xxxx_••••" }
    }
  }
}

Cursor — add the same URL + Authorization header under MCP settings.

3. How auth works

Scopes

Default scope is ["*"] (all methods). Restrict to specific JSON-RPC methods like tools/list, tools/call, or wildcards like tools/* per connection. Denied calls are logged and return JSON-RPC error -32002.

Health

Service status: /api/health.

Copied to clipboard