Skip to content
VS Code

contentforge for VS Code

io.github.gentry-ai-bot/contentforge

Content pipeline MCP server — image sourcing, SEO, affiliate links, and CMS publishing.

client:VS Code transport:stdio runtime:npm

Install contentforge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "contentforge-cms-url",
      "description": "CONTENTFORGE_CMS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "contentforge-cms-key",
      "description": "CONTENTFORGE_CMS_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "contentforge-pexels-key",
      "description": "CONTENTFORGE_PEXELS_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "contentforge-amazon-tag",
      "description": "CONTENTFORGE_AMAZON_TAG",
      "password": true
    }
  ],
  "servers": {
    "contentforge": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "contentforge-mcp"
      ],
      "env": {
        "CONTENTFORGE_CMS_URL": "${input:contentforge-cms-url}",
        "CONTENTFORGE_CMS_KEY": "${input:contentforge-cms-key}",
        "CONTENTFORGE_PEXELS_KEY": "${input:contentforge-pexels-key}",
        "CONTENTFORGE_AMAZON_TAG": "${input:contentforge-amazon-tag}"
      }
    }
  }
}

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

contentforge in other clients