Skip to content
VS Code

gency mcp for VS Code

ai.gency/gency-mcp

Gency AI product image generation - MCP server for Claude, Codex, Cursor, VS Code

client:VS Code transport:stdio runtime:npm

Install gency mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gency-api-url",
      "description": "GENCY_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gency-oauth-client-id",
      "description": "GENCY_OAUTH_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gency-oauth-client-secret",
      "description": "GENCY_OAUTH_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gency-oauth-api-base",
      "description": "GENCY_OAUTH_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gency-oauth-scope",
      "description": "GENCY_OAUTH_SCOPE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gency-mcp-allowed-client-ids",
      "description": "GENCY_MCP_ALLOWED_CLIENT_IDS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gency-mcp-upload-secret",
      "description": "GENCY_MCP_UPLOAD_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gency-mcp-oauth-resource",
      "description": "GENCY_MCP_OAUTH_RESOURCE",
      "password": true
    }
  ],
  "servers": {
    "gency-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gency-ai/gency-mcp"
      ],
      "env": {
        "GENCY_API_URL": "${input:gency-api-url}",
        "GENCY_OAUTH_CLIENT_ID": "${input:gency-oauth-client-id}",
        "GENCY_OAUTH_CLIENT_SECRET": "${input:gency-oauth-client-secret}",
        "GENCY_OAUTH_API_BASE": "${input:gency-oauth-api-base}",
        "GENCY_OAUTH_SCOPE": "${input:gency-oauth-scope}",
        "GENCY_MCP_ALLOWED_CLIENT_IDS": "${input:gency-mcp-allowed-client-ids}",
        "GENCY_MCP_UPLOAD_SECRET": "${input:gency-mcp-upload-secret}",
        "GENCY_MCP_OAUTH_RESOURCE": "${input:gency-mcp-oauth-resource}"
      }
    }
  }
}

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

gency mcp in other clients