Skip to content
VS Code

cms for VS Code

com.writavo/cms

Draft, edit, organise, schedule and publish a Writavo Site content from any AI assistant.

client:VS Code transport:stdio runtime:npm

Install cms in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "writavo-api-key",
      "description": "WRITAVO_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "cms": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@writavo/mcp-server"
      ],
      "env": {
        "WRITAVO_API_KEY": "${input:writavo-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

cms in other clients