Skip to content
VS Code

FAQai for VS Code

app.faqai/mcp-server

Turn any document into a production-ready RAG dataset from Claude, Cursor, or any MCP host.

client:VS Code transport:stdio runtime:npm

Install FAQai in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "faqai-api-key",
      "description": "FAQAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "faqai-base-url",
      "description": "FAQAI_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@faqai/mcp-server"
      ],
      "env": {
        "FAQAI_API_KEY": "${input:faqai-api-key}",
        "FAQAI_BASE_URL": "${input:faqai-base-url}"
      }
    }
  }
}

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

FAQai in other clients