Skip to content
VS Code

fetchpet for VS Code

com.pulsemcp/fetchpet

MCP server for Fetch Pet insurance claims management using Playwright automation.

client:VS Code transport:stdio runtime:npm

Install fetchpet in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fetchpet-username",
      "description": "FETCHPET_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fetchpet-password",
      "description": "FETCHPET_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "headless",
      "description": "HEADLESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "timeout",
      "description": "TIMEOUT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fetchpet-download-dir",
      "description": "FETCHPET_DOWNLOAD_DIR",
      "password": true
    }
  ],
  "servers": {
    "fetchpet": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fetchpet-mcp-server"
      ],
      "env": {
        "FETCHPET_USERNAME": "${input:fetchpet-username}",
        "FETCHPET_PASSWORD": "${input:fetchpet-password}",
        "HEADLESS": "${input:headless}",
        "TIMEOUT": "${input:timeout}",
        "FETCHPET_DOWNLOAD_DIR": "${input:fetchpet-download-dir}"
      }
    }
  }
}

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

fetchpet in other clients