Skip to content
VS Code

fascia mcp server for VS Code

io.github.orcar-studio/fascia-mcp-server

Expose Fascia-deployed Tools and Entity schemas to AI agents via MCP

client:VS Code transport:stdio runtime:npm

Install fascia mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fascia-api-key",
      "description": "FASCIA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fascia-api-url",
      "description": "FASCIA_API_URL",
      "password": true
    }
  ],
  "servers": {
    "fascia-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@fascia-run/mcp-server"
      ],
      "env": {
        "FASCIA_API_KEY": "${input:fascia-api-key}",
        "FASCIA_API_URL": "${input:fascia-api-url}"
      }
    }
  }
}

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

fascia mcp server in other clients