Home › Development › Woodpecker CI

Woodpecker CI

Read Woodpecker CI repositories, pipelines and logs, and drive builds, secrets and crons

TypeScript Local
★ 0 stars Last pushed 2026-09-24 License: MIT

Topics: Developer Tools

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 0.3.1)

npx -y @ni-c/[email protected]

Or add to your MCP client config:

{
  "mcpServers": {
    "woodpecker-ci-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@ni-c/[email protected]"
      ],
      "env": {
        "WOODPECKER_URL": "<YOUR_VALUE>",
        "WOODPECKER_TOKEN": "<YOUR_VALUE>",
        "WOODPECKER_READ_ONLY": "<YOUR_VALUE>",
        "WOODPECKER_ALLOW_TOOLS": "<YOUR_VALUE>",
        "WOODPECKER_DENY_TOOLS": "<YOUR_VALUE>",
        "WOODPECKER_INSECURE_TLS": "<YOUR_VALUE>"
      }
    }
  }
}
  • WOODPECKER_URL required — Root URL of the Woodpecker server, e.g. https://woodpecker.example.com
  • WOODPECKER_TOKEN required secret — Personal access token from the Woodpecker user settings
  • WOODPECKER_READ_ONLY — Set to true to register only the read tools (default: false)
  • WOODPECKER_ALLOW_TOOLS — Comma-separated tool names or list_* prefixes to register; 'essential' selects a curated preset (default: all tools)
  • WOODPECKER_DENY_TOOLS — Comma-separated tool names or list_* prefixes to remove from whatever the allow list left
  • WOODPECKER_INSECURE_TLS — Set to true to accept a self-signed certificate from the Woodpecker server (default: false)

Package (oci)

docker run -i --rm ghcr.io/ni-c/woodpecker-ci-mcp:0.3.1

Or add to your MCP client config:

{
  "mcpServers": {
    "woodpecker-ci-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ni-c/woodpecker-ci-mcp:0.3.1"
      ],
      "env": {
        "WOODPECKER_URL": "<YOUR_VALUE>",
        "WOODPECKER_TOKEN": "<YOUR_VALUE>",
        "WOODPECKER_READ_ONLY": "<YOUR_VALUE>",
        "WOODPECKER_ALLOW_TOOLS": "<YOUR_VALUE>",
        "WOODPECKER_DENY_TOOLS": "<YOUR_VALUE>",
        "WOODPECKER_INSECURE_TLS": "<YOUR_VALUE>"
      }
    }
  }
}
  • WOODPECKER_URL required — Root URL of the Woodpecker server, e.g. https://woodpecker.example.com
  • WOODPECKER_TOKEN required secret — Personal access token from the Woodpecker user settings
  • WOODPECKER_READ_ONLY — Set to true to register only the read tools (default: false)
  • WOODPECKER_ALLOW_TOOLS — Comma-separated tool names or list_* prefixes to register; 'essential' selects a curated preset (default: all tools)
  • WOODPECKER_DENY_TOOLS — Comma-separated tool names or list_* prefixes to remove from whatever the allow list left
  • WOODPECKER_INSECURE_TLS — Set to true to accept a self-signed certificate from the Woodpecker server (default: false)

Related servers

Listed in punkpeye/awesome-mcp-servers (MIT)

Data from the Official MCP Registry