Skip to content
VS Code

First Party Data CRO for VS Code

io.github.atul0016/first-party-data-cro

First-party funnel, rage-click, checkout, A/B test, and page-speed CRO intelligence.

client:VS Code transport:stdio runtime:pypi

Install First Party Data CRO in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "earnall-mcp-license-key",
      "description": "EARNALL_MCP_LICENSE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earnall-mcp-activation-id",
      "description": "EARNALL_MCP_ACTIVATION_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earnall-mcp-license-api",
      "description": "EARNALL_MCP_LICENSE_API",
      "password": true
    }
  ],
  "servers": {
    "first-party-data-cro": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "first-party-data-cro-mcp"
      ],
      "env": {
        "EARNALL_MCP_LICENSE_KEY": "${input:earnall-mcp-license-key}",
        "EARNALL_MCP_ACTIVATION_ID": "${input:earnall-mcp-activation-id}",
        "EARNALL_MCP_LICENSE_API": "${input:earnall-mcp-license-api}"
      }
    }
  }
}

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

First Party Data CRO in other clients