Skip to content
VS Code

server for VS Code

ai.ponlo/server

Family calendar, tasks, meals, lists & rewards hub for AI assistants.

client:VS Code transport:stdio runtime:npm

Install server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ponlo-api-url",
      "description": "PONLO_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ponlo-api-key",
      "description": "PONLO_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ponlo-ai"
      ],
      "env": {
        "PONLO_API_URL": "${input:ponlo-api-url}",
        "PONLO_API_KEY": "${input:ponlo-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

server in other clients