# io.github.przemekzur/breezedeploy (npm · breezedeploy-mcp)

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

- Trust score: 62/100 (medium)
- Change this week: +22
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `breezedeploy-mcp`: 62/100 (this document), [markdown](https://verifymcp.io/servers/przemekzur-breezedeploy/breezedeploy-mcp.md), [page](https://verifymcp.io/servers/przemekzur-breezedeploy/breezedeploy-mcp)

## Channel facts

- Registry: `npm`
- Package: `breezedeploy-mcp`
- Version: `0.4.0`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

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

## Install

### Claude

```bash
claude mcp add przemekzur-breezedeploy -- npx -y breezedeploy-mcp
```

### Codex

```bash
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
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add przemekzur-breezedeploy --command npx --arg -y --arg breezedeploy-mcp
```

### Hermes

```yaml
mcp_servers:
  przemekzur-breezedeploy:
    command: "npx"
    args: ["-y", "breezedeploy-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "przemekzur-breezedeploy": {
      "command": "npx",
      "args": [
        "-y",
        "breezedeploy-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 62, +26)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] 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.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: MIT

### 2026-08-01 (score 36, +5)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 31, +13)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 18, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 40)

First indexed and scored.

## MCP tools (11)

### `whoami` (~22 tokens)

Account info

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

### `list_sizes` (~18 tokens)

List machine sizes

List available machine sizes and their compute-unit rates.

### `list_plans` (~22 tokens)

List billing plans

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

### `deploy_app` (~147 tokens)

Deploy an app from a Docker image

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).

Input parameters:

- `app` (string, required): App name; becomes the subdomain
- `env` (object): Environment variables
- `image` (string, required): Public Docker image, e.g. nginxdemos/hello
- `mode` (string): autoscale | reserved
- `port` (integer): Container port (default 8080)
- `project` (string, required): Project name (created if new)
- `size` (string): A size key from list_sizes

### `deploy_source` (~186 tokens)

Deploy a local folder (no git, no Docker)

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.

Input parameters:

- `app` (string, required): App name; becomes the subdomain
- `dir` (string): Local folder to deploy (default: current directory)
- `env` (object): Environment variables
- `mode` (string): autoscale | reserved
- `port` (integer): Container port (default 8080)
- `project` (string, required): Project name (created if new)
- `size` (string): A size key from list_sizes

### `deploy_from_git` (~231 tokens)

Build and deploy from a git repo

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.

Input parameters:

- `app` (string, required): App name; becomes the subdomain
- `env` (object): Environment variables
- `mode` (string): autoscale | reserved
- `port` (integer): Container port (default 8080)
- `project` (string, required): Project name (created if new)
- `ref` (string): Branch, tag, or commit (default: repo default)
- `repoUrl` (string, required): Git repo URL (public, or private with a token)
- `size` (string): A size key from list_sizes
- `token` (string): Access token for a PRIVATE https repo (e.g. GitHub PAT). Not stored.

### `add_database` (~45 tokens)

Add a Postgres database

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

Input parameters:

- `project` (string, required): Project name (created if new)

### `list_apps` (~32 tokens)

List deployed apps

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

Input parameters:

- `project` (string, required): Project name

### `delete_app` (~38 tokens)

Stop/delete an app

Stop a deployed app by project and app name.

Input parameters:

- `app` (string, required): App name to stop
- `project` (string, required): Project name

### `set_compliance` (~171 tokens)

Generate GDPR compliance docs

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.

Input parameters:

- `city` (string)
- `country` (string, required): Country of the responsible party
- `email` (string, required): Contact email
- `legalName` (string, required): Person or company responsible
- `postalCode` (string)
- `processors` (array): Third-party processors, e.g. Stripe
- `project` (string, required): Project name (created if new)
- `siteName` (string, required): Public site/app name
- `street` (string)
- `usesAnalytics` (boolean): Site uses analytics
- `usesCookies` (boolean): Site sets non-essential cookies
- `vatId` (string)

### `usage` (~21 tokens)

Usage and cost

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

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/przemekzur-breezedeploy/breezedeploy-mcp#diagnostics

## Score history

- 2026-08-03: 62
- 2026-08-02: 62
- 2026-08-01: 36
- 2026-07-31: 31
- 2026-07-30: 18
- 2026-07-28: 40
- 2026-07-27: 40

## Links

- npm package: https://www.npmjs.com/package/breezedeploy-mcp
- Socket report: https://socket.dev/npm/package/breezedeploy-mcp
- Changelog RSS feed: https://verifymcp.io/servers/przemekzur-breezedeploy/breezedeploy-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/przemekzur-breezedeploy/breezedeploy-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/przemekzur-breezedeploy/breezedeploy-mcp
