Skip to content
VS Code

Everyrow MCP Server for VS Code

io.github.futuresearch/everyrow-mcp

Give your AI a research team. Forecast, score, classify, or research every row of a dataset.

client:VS Code transport:stdio runtime:pypi

Install Everyrow MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "everyrow-api-key",
      "description": "EVERYROW_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "everyrow-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "everyrow-mcp"
      ],
      "env": {
        "EVERYROW_API_KEY": "${input:everyrow-api-key}"
      }
    }
  }
}

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

Everyrow MCP Server in other clients