Skip to content
VS Code

ragstack for VS Code

io.github.hatmanstack/ragstack

Search, chat, upload, and scrape a serverless RAGStack knowledge base on AWS.

client:VS Code transport:stdio runtime:pypi

Install ragstack in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ragstack-graphql-endpoint",
      "description": "RAGSTACK_GRAPHQL_ENDPOINT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ragstack-api-key",
      "description": "RAGSTACK_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "ragstack": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ragstack-mcp"
      ],
      "env": {
        "RAGSTACK_GRAPHQL_ENDPOINT": "${input:ragstack-graphql-endpoint}",
        "RAGSTACK_API_KEY": "${input:ragstack-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

ragstack in other clients