Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.przemekzur/breezedeploy

NPM · BREEZEDEPLOY-MCP · SCANNED AUG 3

Deploy a local folder, git repo, or Docker image to a live HTTPS URL from your AI chat.

Available components

+22 this week 62 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (101 of 105), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (101 of 105), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
  • Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
  • Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 22 days ago).Pass
  • Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability71
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 933 tokens (~84/item across 11 items; 11 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage97
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 90% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · breezedeploy-mcp

# add to Claude Code
claude mcp add przemekzur-breezedeploy -- npx -y breezedeploy-mcp
# add to Codex CLI
codex mcp add przemekzur-breezedeploy -- npx -y breezedeploy-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "przemekzur-breezedeploy": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "breezedeploy-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add przemekzur-breezedeploy --command npx --arg -y --arg breezedeploy-mcp
# ~/.hermes/config.yaml
mcp_servers:
  przemekzur-breezedeploy:
    command: "npx"
    args: ["-y", "breezedeploy-mcp"]
// mcp.json
{
  "mcpServers": {
    "przemekzur-breezedeploy": {
      "command": "npx",
      "args": [
        "-y",
        "breezedeploy-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +26
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
    • Capabilities: pass → unverified functional
    • Tool coverage: 100 → unverified functional
    • Schema quality: unverified → good functional
    • Maintenance: unverified → pass functional
    • License: unverified → pass functional
    • Stability: unverified → 0.20 functional
    • Dependency health: unverified → partial functional
    • Licence: MIT functional
  • 1 Aug 26 +5
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • MCP protocol: unverified → pass functional
  • 31 Jul 26 +13
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −22
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 40

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 101 packages

101 packages in the resolved dependency tree · 101 deprecated · 32 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 11 exposed · ~933 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
add_database ~45

Provision a managed Postgres database for a project. New deployments in the project automatically receive its connection string as DATABASE_URL.

NameTypeReqDescription
projectstringyesProject name (created if new)

No output schema declared.

No examples provided.

delete_app ~38

Stop a deployed app by project and app name.

NameTypeReqDescription
appstringyesApp name to stop
projectstringyesProject name

No output schema declared.

No examples provided.

deploy_app ~147

Deploy a container image to a project and get a live HTTPS URL. Creates the project if it does not exist. Use `mode: autoscale` (default, sleeps when idle) or `reserved` (always on).

NameTypeReqDescription
appstringyesApp name; becomes the subdomain
envobjectEnvironment variables
imagestringyesPublic Docker image, e.g. nginxdemos/hello
modestringautoscale | reserved
portintegerContainer port (default 8080)
projectstringyesProject name (created if new)
sizestringA size key from list_sizes

No output schema declared.

No examples provided.

deploy_from_git ~231

Build a git repository with Nixpacks and deploy it, returning a live HTTPS URL. Use this when the user already has a repo URL; for a plain local folder with no repo, use `deploy_source` instead. Creates the project if it does not exist. For a PRIVATE repo, pass `token` (e.g. a GitHub personal access token) — it's used only to clone and is never stored or logged.

NameTypeReqDescription
appstringyesApp name; becomes the subdomain
envobjectEnvironment variables
modestringautoscale | reserved
portintegerContainer port (default 8080)
projectstringyesProject name (created if new)
refstringBranch, tag, or commit (default: repo default)
repoUrlstringyesGit repo URL (public, or private with a token)
sizestringA size key from list_sizes
tokenstringAccess token for a PRIVATE https repo (e.g. GitHub PAT). Not stored.

No output schema declared.

No examples provided.

deploy_source ~186

Deploy a local project folder — no git, no Docker, no Dockerfile. Uploads the folder and builds it server-side with Nixpacks, returning a live HTTPS URL. Use this when the user just has a local app on disk (the default, zero-setup path). heavy/secret files (node_modules, .git, dist, build, .env) are excluded automatically. Creates the project if it does not exist.

NameTypeReqDescription
appstringyesApp name; becomes the subdomain
dirstringLocal folder to deploy (default: current directory)
envobjectEnvironment variables
modestringautoscale | reserved
portintegerContainer port (default 8080)
projectstringyesProject name (created if new)
sizestringA size key from list_sizes

No output schema declared.

No examples provided.

list_apps ~32

List the deployments (apps) in a project, with status and URL.

NameTypeReqDescription
projectstringyesProject name

No output schema declared.

No examples provided.

list_plans ~22

List billing plans (price, included allotment, overage).

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

list_sizes ~18

List available machine sizes and their compute-unit rates.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

set_compliance ~171

Generate and publish imprint, privacy policy, and a cookie-consent banner for a project. Returns public URLs you can link to / embed. Templates only, not legal advice.

NameTypeReqDescription
citystring
countrystringyesCountry of the responsible party
emailstringyesContact email
legalNamestringyesPerson or company responsible
postalCodestring
processorsarrayThird-party processors, e.g. Stripe
projectstringyesProject name (created if new)
siteNamestringyesPublic site/app name
streetstring
usesAnalyticsbooleanSite uses analytics
usesCookiesbooleanSite sets non-essential cookies
vatIdstring

No output schema declared.

No examples provided.

usage ~21

Show metered compute units and the current cost estimate for your account.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

whoami ~22

Show the resolved tenant and control-plane URL (for debugging the connection).

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.