Skip to main content

IDE Gateway

Connect your IDE to Clevername through a single MCP endpoint. Add the gateway URL, sign in in your browser, and your tools appear automatically.

Key Concepts

How the gateway works

The IDE gateway exposes a single MCP endpoint that aggregates all your installed integration directory servers, custom connections, and built-in tools. Your IDE connects to one URL and, in OAuth-capable clients, signs in through the browser instead of configuring each server individually.

OAuth login

Most MCP clients can discover Clevername's OAuth endpoints automatically. Add the gateway URL, accept the browser prompt, sign in, and the client stores a refreshable session without making you paste a token.

Fallback tokens

  • Use tokens only when needed — Older MCP clients can still authenticate with cnk_* bearer tokens
  • Scoped access — Tokens can still be restricted by tool allowlist, budget, and expiry
  • Same gateway URL — OAuth and token-based clients both connect to https://clevername.net/api/hub/mcp/gateway
Step-by-Step Guide
1

Add the Clevername gateway URL

Use the same MCP URL in every client:

https://clevername.net/api/hub/mcp/gateway
IDE MCP settings with the Clevername gateway URL entered as a single server connection
For modern MCP clients, the gateway URL is enough to start the browser login flow.
Tip
If your client supports MCP OAuth, do not add an Authorization header. The client should prompt you to sign in instead.
2

Configure Claude Code

Add the following to your Claude Code MCP configuration file (~/.claude/claude_desktop_config.json or project-level .mcp.json):

{
  "mcpServers": {
    "clevername-mcp": {
      "type": "streamable-http",
      "url": "https://clevername.net/api/hub/mcp/gateway"
    }
  }
}
Note
After saving, Claude Code should open a browser login window the first time it connects.
3

Configure VS Code (Copilot MCP)

In VS Code, open your .vscode/mcp.json or user settings and add:

{
  "servers": {
    "clevername-mcp": {
      "type": "http",
      "url": "https://clevername.net/api/hub/mcp/gateway"
    }
  }
}
4

Configure Cursor

In Cursor, open Settings → MCP Servers and add a new server:

{
  "mcpServers": {
    "clevername-mcp": {
      "url": "https://clevername.net/api/hub/mcp/gateway"
    }
  }
}
Tip
All three IDEs use the same gateway URL. The only difference is the configuration file format and where each client stores it.
5

Sign in or use a fallback token

OAuth-capable clients should now prompt you to sign in through the browser. If your client does not support OAuth yet, create a cnk_* gateway token from the dashboard and add it as a bearer header instead.

Claude Code terminal showing a successful MCP connection after browser login
A successful connection shows all your Clevername tools available after sign-in.