Skip to content
VS Code

rasterly for VS Code

io.github.rasterly-dev/rasterly-mcp

Web toolkit for AI agents: read any URL as Markdown, screenshot, extract data, or crawl a site.

client:VS Code transport:stdio runtime:npm

Install rasterly in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rasterly-api-key",
      "description": "RASTERLY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rasterly-api-url",
      "description": "RASTERLY_API_URL",
      "password": true
    }
  ],
  "servers": {
    "rasterly-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "rasterly-mcp"
      ],
      "env": {
        "RASTERLY_API_KEY": "${input:rasterly-api-key}",
        "RASTERLY_API_URL": "${input:rasterly-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

rasterly in other clients