Skip to Content
Connect Your Tools

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.

  1. In the GQLens dashboard, go to Connect and click Install in Cursor.
  2. Alternatively, add to .cursor/mcp.json:
{ "mcpServers": { "gqlens": { "url": "https://mcp.gqlens.com" } } }
  1. In Cursor MCP settings, press Connect next to GQLens and complete sign-in.

Cursor MCP docs → 


VS Code

VS Code supports one-click install via deeplink.

  1. In the GQLens dashboard, go to Connect and click Install in VS Code.
  2. Alternatively, add to .vscode/mcp.json:
{ "servers": { "gqlens": { "url": "https://mcp.gqlens.com", "type": "http" } } }
  1. Authenticate when prompted by the OAuth flow.

VS Code MCP docs → 


Claude Code

Claude Code uses a CLI command to add MCP servers.

claude mcp add --transport http gqlens https://mcp.gqlens.com

Then run /mcp inside Claude Code and authenticate via browser.

Claude Code MCP docs → 


Claude Desktop

Claude Desktop uses the Connectors UI for remote servers.

  1. Open Settings → Connectors.
  2. Click Add and paste: https://mcp.gqlens.com
  3. 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.

Windsurf MCP docs → 


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.

Cline remote server docs → 


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.com

Restart Continue and authenticate when prompted.

Continue MCP docs → 


OpenCode

Add to opencode.json in your project root:

{ "mcp": { "gqlens": { "type": "http", "url": "https://mcp.gqlens.com" } } }

OpenCode MCP docs → 


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.

Zed MCP docs → 


ChatGPT Desktop

  1. Open Settings → Apps & Connectors.
  2. Enable Developer Mode under Advanced settings.
  3. Create a new connector:
    • Name: GQLens
    • URL: https://mcp.gqlens.com
  4. Authenticate via OAuth when prompted.

ChatGPT connector docs → 

Last updated on