Skip to content
VS Code

TinyFish Guided Research for VS Code

io.github.mohdsaleh/tinyfish-guided-research

Auditable deep-research MCP server powered by TinyFish Search and Fetch.

client:VS Code transport:stdio runtime:pypi

Install TinyFish Guided Research in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tinyfish-api-key",
      "description": "TINYFISH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "database-url",
      "description": "DATABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "research-db-path",
      "description": "RESEARCH_DB_PATH",
      "password": true
    }
  ],
  "servers": {
    "tinyfish-guided-research": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "tinyfish-guided-research-mcp"
      ],
      "env": {
        "TINYFISH_API_KEY": "${input:tinyfish-api-key}",
        "DATABASE_URL": "${input:database-url}",
        "RESEARCH_DB_PATH": "${input:research-db-path}"
      }
    }
  }
}

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

TinyFish Guided Research in other clients