VantagePeers Docs

Supported Tools

VantagePeers works with any MCP-compatible AI coding tool. Config snippets for 12 tools.

Supported Tools

VantagePeers is an MCP server. It works with any tool that supports the Model Context Protocol. No vendor lock-in.

Full MCP Support

These tools have native MCP client support — add VantagePeers as a server and all 82 tools are immediately available.

Claude Code

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: ~/.claude.json or .claude/settings.json

Cursor

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: .cursor/mcp.json

Codex (OpenAI)

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: ~/.codex/config.json

Windsurf

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: ~/.codeium/windsurf/mcp_config.json

Cline

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: VS Code settings → Cline MCP Servers

Roo Code

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: VS Code settings → Roo Code MCP Servers

OpenCode

[mcp.vantage-peers]
command = "npx"
args = ["-y", "vantage-peers-mcp"]

[mcp.vantage-peers.env]
CONVEX_URL = "https://your-deployment.convex.cloud"

Config file: opencode.toml

Amazon Q Developer

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: ~/.aws/amazonq/mcp.json

Augment Code

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: VS Code settings → Augment MCP Servers

Void

{
  "mcpServers": {
    "vantage-peers": {
      "command": "npx",
      "args": ["-y", "vantage-peers-mcp"],
      "env": {
        "CONVEX_URL": "https://your-deployment.convex.cloud"
      }
    }
  }
}

Config file: Void MCP settings

Agent-Mode Only

These tools support MCP in agent mode but not in inline/chat mode.

Continue.dev

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "npx",
          "args": ["-y", "vantage-peers-mcp"],
          "env": {
            "CONVEX_URL": "https://your-deployment.convex.cloud"
          }
        }
      }
    ]
  }
}

Config file: ~/.continue/config.json

GitHub Copilot

{
  "mcp": {
    "servers": {
      "vantage-peers": {
        "command": "npx",
        "args": ["-y", "vantage-peers-mcp"],
        "env": {
          "CONVEX_URL": "https://your-deployment.convex.cloud"
        }
      }
    }
  }
}

Config file: .github/copilot-mcp.json — requires agent mode

Environment Variable

All configurations require one environment variable:

VariableValueDescription
CONVEX_URLhttps://your-deployment.convex.cloudYour Convex deployment URL (from npx convex deploy)

The MCP server resolves this at startup. No other configuration is needed — the server connects to your Convex backend and exposes all 82 tools automatically.

On this page