Sign In

@yawlabs/bild-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yawlabs/bild-mcp

MCP server adapter for bild.sh — build servers + artifact hosting for all software

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@yawlabs/bild-mcp

MCP server adapter for bild.sh — build servers + artifact hosting for all software.

One integration among many. bild-mcp exposes the bild REST API as MCP tools so AI agents can trigger builds, stream logs, and pull artifacts from MCP-capable clients.

Install

npx -y @yawlabs/bild-mcp

Configure

Add to your MCP client config:

{
  "mcpServers": {
    "bild": {
      "command": "npx",
      "args": ["-y", "@yawlabs/bild-mcp"],
      "env": {
        "BILD_TOKEN": "bild_pat_...",
        "BILD_SERVER": "https://bild.sh"
      }
    }
  }
}

BILD_TOKEN is required. BILD_SERVER is optional — defaults to https://bild.sh, override it to target a self-host instance. The env var names match the @yawlabs/bild CLI so one setting covers both.

Tools

  • bild_whoami — list teams the PAT can access.
  • bild_queue_build — queue a build (spec, optional teamSlug, arch).
  • bild_get_build — fetch a build by id.
  • bild_list_artifacts — list artifacts for a team (optional name, limit).
  • bild_get_artifact — fetch a single artifact; blob kinds return a short-lived signed pullUrl.

Artifact push is intentionally out of scope for v0 — the signed-URL + binary PUT flow doesn't round-trip cleanly through a text tool surface. Use the bild CLI (bild artifacts push) for uploads.

License

Apache-2.0. See LICENSE.

Keywords

bild

FAQs

Package last updated on 18 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts