Skip to content
VS Code

Teneo Book Generation for VS Code

io.github.traviseric/teneo-book-mcp

Publish-ready nonfiction books from a topic: manuscript, cover, PDF/EPUB/DOCX. Free outline to try.

client:VS Code transport:stdio runtime:npm

Install Teneo Book Generation in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "teneo-api-key",
      "description": "TENEO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "teneo-base-url",
      "description": "TENEO_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "teneo-service-key",
      "description": "TENEO_SERVICE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "teneo-on-behalf-of",
      "description": "TENEO_ON_BEHALF_OF",
      "password": true
    }
  ],
  "servers": {
    "teneo-book-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "teneo-book-mcp"
      ],
      "env": {
        "TENEO_API_KEY": "${input:teneo-api-key}",
        "TENEO_BASE_URL": "${input:teneo-base-url}",
        "TENEO_SERVICE_KEY": "${input:teneo-service-key}",
        "TENEO_ON_BEHALF_OF": "${input:teneo-on-behalf-of}"
      }
    }
  }
}

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

Teneo Book Generation in other clients