Skip to content
VS Code

SEO Performance MCP for VS Code

io.github.automatelab-tech/seo-performance-mcp

Per-URL SEO verdicts from GSC, GA4, Matomo, Clarity, AI citations: refresh/expand/merge/kill.

client:VS Code transport:stdio runtime:npm

Install SEO Performance MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gsc-service-account-json",
      "description": "GSC_SERVICE_ACCOUNT_JSON",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gsc-site-url",
      "description": "GSC_SITE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "matomo-url",
      "description": "MATOMO_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "matomo-token",
      "description": "MATOMO_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "matomo-site-id",
      "description": "MATOMO_SITE_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ga4-property-id",
      "description": "GA4_PROPERTY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ga4-service-account-json",
      "description": "GA4_SERVICE_ACCOUNT_JSON",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clarity-project-id",
      "description": "CLARITY_PROJECT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clarity-api-token",
      "description": "CLARITY_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "posts-sitemap-url",
      "description": "POSTS_SITEMAP_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "posts-list",
      "description": "POSTS_LIST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ghost-admin-api-url",
      "description": "GHOST_ADMIN_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ghost-admin-api-key",
      "description": "GHOST_ADMIN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "citation-intelligence-url",
      "description": "CITATION_INTELLIGENCE_URL",
      "password": true
    }
  ],
  "servers": {
    "seo-performance-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@automatelab/seo-performance-mcp"
      ],
      "env": {
        "GSC_SERVICE_ACCOUNT_JSON": "${input:gsc-service-account-json}",
        "GSC_SITE_URL": "${input:gsc-site-url}",
        "MATOMO_URL": "${input:matomo-url}",
        "MATOMO_TOKEN": "${input:matomo-token}",
        "MATOMO_SITE_ID": "${input:matomo-site-id}",
        "GA4_PROPERTY_ID": "${input:ga4-property-id}",
        "GA4_SERVICE_ACCOUNT_JSON": "${input:ga4-service-account-json}",
        "CLARITY_PROJECT_ID": "${input:clarity-project-id}",
        "CLARITY_API_TOKEN": "${input:clarity-api-token}",
        "POSTS_SITEMAP_URL": "${input:posts-sitemap-url}",
        "POSTS_LIST": "${input:posts-list}",
        "GHOST_ADMIN_API_URL": "${input:ghost-admin-api-url}",
        "GHOST_ADMIN_API_KEY": "${input:ghost-admin-api-key}",
        "CITATION_INTELLIGENCE_URL": "${input:citation-intelligence-url}"
      }
    }
  }
}

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

SEO Performance MCP in other clients