Skip to content
VS Code

Syncpen for VS Code

io.github.airbuzz/syncpen-mcp

The markdown workspace your AI can read, search, and suggest edits in — every change signed.

client:VS Code transport:stdio runtime:npm

Install Syncpen in VS Code

.vscode/mcp.json

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

Syncpen in other clients