Skip to content
VS Code

optiqra mcp for VS Code

io.github.armin5872/optiqra-mcp

MCP server exposing OptiQra's website audit tools: SEO, GEO, AEO, and AI-generated fixes.

client:VS Code transport:stdio runtime:npm

Install optiqra mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "optiqra-base-url",
      "description": "OPTIQRA_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "optiqra-provider-api-key",
      "description": "OPTIQRA_PROVIDER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "optiqra-timeout-ms",
      "description": "OPTIQRA_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "optiqra-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "optiqra-mcp"
      ],
      "env": {
        "OPTIQRA_BASE_URL": "${input:optiqra-base-url}",
        "OPTIQRA_PROVIDER_API_KEY": "${input:optiqra-provider-api-key}",
        "OPTIQRA_TIMEOUT_MS": "${input:optiqra-timeout-ms}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

optiqra mcp in other clients