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
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
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
claude mcp add przemekzur-breezedeploy -- npx -y breezedeploy-mcp
codex mcp add przemekzur-breezedeploy -- npx -y breezedeploy-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"przemekzur-breezedeploy": {
"type": "local",
"command": [
"npx",
"-y",
"breezedeploy-mcp"
],
"enabled": true
}
}
} openclaw mcp add przemekzur-breezedeploy --command npx --arg -y --arg breezedeploy-mcp
mcp_servers:
przemekzur-breezedeploy:
command: "npx"
args: ["-y", "breezedeploy-mcp"] {
"mcpServers": {
"przemekzur-breezedeploy": {
"command": "npx",
"args": [
"-y",
"breezedeploy-mcp"
]
}
}
} 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.
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.
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.
add_database Add a Postgres database ~45
Provision a managed Postgres database for a project. New deployments in the project automatically receive its connection string as DATABASE_URL.
| Name | Type | Req | Description |
|---|---|---|---|
| project | string | yes | Project name (created if new) |
No output schema declared.
No examples provided.
delete_app Stop/delete an app ~38
Stop a deployed app by project and app name.
| Name | Type | Req | Description |
|---|---|---|---|
| app | string | yes | App name to stop |
| project | string | yes | Project name |
No output schema declared.
No examples provided.
deploy_app Deploy an app from a Docker image ~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).
| Name | Type | Req | Description |
|---|---|---|---|
| app | string | yes | App name; becomes the subdomain |
| env | object | — | Environment variables |
| image | string | yes | Public Docker image, e.g. nginxdemos/hello |
| mode | string | — | autoscale | reserved |
| port | integer | — | Container port (default 8080) |
| project | string | yes | Project name (created if new) |
| size | string | — | A size key from list_sizes |
No output schema declared.
No examples provided.
deploy_from_git Build and deploy from a git repo ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| app | string | yes | App name; becomes the subdomain |
| env | object | — | Environment variables |
| mode | string | — | autoscale | reserved |
| port | integer | — | Container port (default 8080) |
| project | string | yes | Project name (created if new) |
| ref | string | — | Branch, tag, or commit (default: repo default) |
| repoUrl | string | yes | 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. |
No output schema declared.
No examples provided.
deploy_source Deploy a local folder (no git, no Docker) ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| app | string | yes | 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 | yes | Project name (created if new) |
| size | string | — | A size key from list_sizes |
No output schema declared.
No examples provided.
list_apps List deployed apps ~32
List the deployments (apps) in a project, with status and URL.
| Name | Type | Req | Description |
|---|---|---|---|
| project | string | yes | Project name |
No output schema declared.
No examples provided.
list_plans List billing 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 List machine 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 Generate GDPR compliance docs ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| city | string | — | — |
| country | string | yes | Country of the responsible party |
| string | yes | Contact email | |
| legalName | string | yes | Person or company responsible |
| postalCode | string | — | — |
| processors | array | — | Third-party processors, e.g. Stripe |
| project | string | yes | Project name (created if new) |
| siteName | string | yes | Public site/app name |
| street | string | — | — |
| usesAnalytics | boolean | — | Site uses analytics |
| usesCookies | boolean | — | Site sets non-essential cookies |
| vatId | string | — | — |
No output schema declared.
No examples provided.
usage Usage and cost ~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 Account info ~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.