Skip to content
VS Code

spines for VS Code

io.github.superagentic/spines

Access book collections, reading lists, and bookshelf recognition from AI assistants.

client:VS Code transport:stdio runtime:npm

Install spines in VS Code

.vscode/mcp.json

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

spines in other clients