Skip to main content
Qonversion provides a remote MCP server that allows AI assistants to access your project data. The server is hosted at https://mcp.qonversion.io/mcp and uses OAuth 2.1 for authentication. The server follows the MCP Streamable HTTP spec and supports clients that connect natively over HTTP, as well as clients that use mcp-remote for compatibility.

Setup

Claude Desktop

Add the following to your claude_desktop_config.json:
{
  "mcpServers": {
    "Qonversion": {
      "type": "streamable-http",
      "url": "https://mcp.qonversion.io/mcp"
    }
  }
}

Claude Code

claude mcp add --transport http Qonversion https://mcp.qonversion.io/mcp
Run /mcp in a Claude Code session to go through the authentication flow.

Cursor

Add the following to your .cursor/mcp.json:
{
  "mcpServers": {
    "Qonversion": {
      "url": "https://mcp.qonversion.io/mcp"
    }
  }
}

Visual Studio Code

  1. Press CTRL/CMD + P and search for MCP: Add Server.
  2. Select Command (stdio).
  3. Enter the following and press enter:
npx mcp-remote https://mcp.qonversion.io/mcp
  1. Enter the name Qonversion and press enter.
  2. Open MCP: List Servers, select Qonversion, and click Start Server.

Windsurf

  1. Press CTRL/CMD + , to open settings.
  2. Go to Cascade → MCP servers.
  3. Select Add Server → Add custom server and add the following:
{
  "mcpServers": {
    "Qonversion": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.qonversion.io/mcp"]
    }
  }
}

Zed

  1. Press CMD + , to open settings.
  2. Add the following:
{
  "context_servers": {
    "Qonversion": {
      "source": "custom",
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.qonversion.io/mcp"],
      "env": {}
    }
  }
}

Codex

Add the following to your ~/.codex/config.toml:
[features]
experimental_use_rmcp_client = true

[mcp_servers.Qonversion]
url = "https://mcp.qonversion.io/mcp"
Run codex mcp login Qonversion to authenticate.

Other clients

For clients that support MCP via stdio, use the following configuration:
  • Command: npx
  • Arguments: -y mcp-remote https://mcp.qonversion.io/mcp
  • Environment: None

Authentication

On the first connection, your MCP client will open a browser window to authenticate with your Qonversion account. No manual configuration of tokens or API keys is required.