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.
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
Add the Clevername gateway URL
Use the same MCP URL in every client:
https://clevername.net/api/hub/mcp/gateway
Authorization header. The client should prompt you to sign in instead.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"
}
}
}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"
}
}
}Configure Cursor
In Cursor, open Settings → MCP Servers and add a new server:
{
"mcpServers": {
"clevername-mcp": {
"url": "https://clevername.net/api/hub/mcp/gateway"
}
}
}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.