Quick Start: Connect Your Code Editor

Connect your editor to Zephex in under 2 minutes.

Step 1: Get Your API Key

  1. Go to Dashboard → API Keys
  2. Create a new API key and copy it (shown once)
  3. Store it securely (treat it like a password)

Step 2: Generate a Config Snippet

Leave blank to generate a placeholder snippet. If you paste a real key here, it will appear in the snippet you copy.

Add this to .vscode/mcp.json (workspace) or MCP: Open User Configuration (global):
VS Code prompts for the API key via inputs (recommended so you don't store it in plain text).
{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-proxy-api-key",
      "description": "Zephex API key",
      "password": true
    }
  ],
  "servers": {
    "unified-proxy": {
      "type": "http",
      "url": "https://zephex.dev/mcp/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-proxy-api-key}",
        "X-API-Source": "vscode"
      }
    }
  }
}

Step 3: Verify It Works

  1. Restart your editor completely
  2. Start a new chat
  3. Ask: “What tools do you have available?”

Troubleshooting

More help: Connection Issues.