Connect Your Tools
GQLens runs as a remote MCP server. Any tool that supports Streamable HTTP MCP transport can connect to it. After connecting, your tool authenticates via OAuth — no API keys to copy.
MCP Server URL: https://mcp.gqlens.com
Cursor
Cursor supports one-click install via deeplink.
- In the GQLens dashboard, go to Connect and click Install in Cursor.
- Alternatively, add to
.cursor/mcp.json:
{
"mcpServers": {
"gqlens": {
"url": "https://mcp.gqlens.com"
}
}
}- In Cursor MCP settings, press Connect next to GQLens and complete sign-in.
VS Code
VS Code supports one-click install via deeplink.
- In the GQLens dashboard, go to Connect and click Install in VS Code.
- Alternatively, add to
.vscode/mcp.json:
{
"servers": {
"gqlens": {
"url": "https://mcp.gqlens.com",
"type": "http"
}
}
}- Authenticate when prompted by the OAuth flow.
Claude Code
Claude Code uses a CLI command to add MCP servers.
claude mcp add --transport http gqlens https://mcp.gqlens.comThen run /mcp inside Claude Code and authenticate via browser.
Claude Desktop
Claude Desktop uses the Connectors UI for remote servers.
- Open Settings → Connectors.
- Click Add and paste:
https://mcp.gqlens.com - Authenticate via the OAuth flow when prompted.
Claude Desktop remote MCP docs →
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"gqlens": {
"url": "https://mcp.gqlens.com"
}
}
}Restart Windsurf and authenticate when prompted.
Cline
Add to cline_mcp_settings.json (accessible from the Cline MCP
Servers panel):
{
"mcpServers": {
"gqlens": {
"type": "streamableHttp",
"url": "https://mcp.gqlens.com"
}
}
}The type field must be "streamableHttp" for remote servers.
Continue
Create .continue/mcpServers/gqlens.yaml in your project:
name: GQLens
version: 0.0.1
schema: v1
mcpServers:
- name: GQLens
type: streamable-http
url: https://mcp.gqlens.comRestart Continue and authenticate when prompted.
OpenCode
Add to opencode.json in your project root:
{
"mcp": {
"gqlens": {
"type": "http",
"url": "https://mcp.gqlens.com"
}
}
}
Zed
Add to your Zed settings.json:
{
"context_servers": {
"gqlens": {
"url": "https://mcp.gqlens.com"
}
}
}Zed will prompt you to authenticate via the MCP OAuth flow.
ChatGPT Desktop
- Open Settings → Apps & Connectors.
- Enable Developer Mode under Advanced settings.
- Create a new connector:
- Name: GQLens
- URL:
https://mcp.gqlens.com
- Authenticate via OAuth when prompted.