io.github.AkaciaNL/basicdeploy-mcp
NPM · BASICDEPLOY-MCP · SCANNED AUG 7
The runtime your agent deploys to — DB, storage, and a public URL in one MCP call.
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 Security86
- No malware found by supply-chain analysis.Pass
- Known CVEs were checked across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Dependency health was assessed across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- 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 0 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability80
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 900 tokens (~90/item across 10 items; 10 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
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 · basicdeploy-mcp
claude mcp add akacianl-basicdeploy-mcp -- npx -y basicdeploy-mcp
codex mcp add akacianl-basicdeploy-mcp -- npx -y basicdeploy-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"akacianl-basicdeploy-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"basicdeploy-mcp"
],
"enabled": true
}
}
} openclaw mcp add akacianl-basicdeploy-mcp --command npx --arg -y --arg basicdeploy-mcp
mcp_servers:
akacianl-basicdeploy-mcp:
command: "npx"
args: ["-y", "basicdeploy-mcp"] {
"mcpServers": {
"akacianl-basicdeploy-mcp": {
"command": "npx",
"args": [
"-y",
"basicdeploy-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.
- 7 Aug 26 +31
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Tool coverage: unverified → 100 ▲ functional
- MCP protocol: unverified → pass ▲ functional
- First check of Schema quality: fail functional
- First check of Schema quality: excellent functional
- First check of Schema quality: pass functional
- First check of Tool coverage: 100 functional
- 6 Aug 26 35
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 7 Aug 2026 · Analysed npm/[email protected]
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | npm |
Dependencies 94 packages
| Packages resolved | 94 |
|---|---|
| Deprecated | 94 |
| Stale | 29 |
| Tree resolution | Partial |
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.
create_container ~175
Create a new empty BasicDeploy container. A PostgreSQL database and an S3 bucket are provisioned automatically for it. Returns the container's id, subdomain, and public URL. Use deploy_app or exec_command afterwards to put an application in it. Optional memoryMb (256/512/1024/2048) and alwaysOn require the plan/add-ons to allow them (see get_account); larger sizes need Pro/Scale, and always-on on Free consumes a paid add-on slot.
| Name | Type | Req | Description |
|---|---|---|---|
| alwaysOn | boolean | – | Keep the container running 24/7 (never auto-sleep). On Free this uses a paid add-on slot. |
| memoryMb | number | – | Memory for the container in MB: 256, 512, 1024, or 2048. Defaults to the plan's default. |
No output schema declared.
No examples provided.
delete_container ~70
PERMANENTLY delete a container. This destroys the container, its database, and all its files (S3 bucket contents included) and cannot be undone. Only call this when the user has clearly asked for the container to be removed.
| Name | Type | Req | Description |
|---|---|---|---|
| containerId | string | yes | UUID of the container to delete |
No output schema declared.
No examples provided.
deploy_app ~154
Deploy an application from a local tarball (.tar, .tar.gz, .tgz, or .zip) to BasicDeploy. The runtime (Node.js, Python, or Go) is auto-detected from the archive contents. If containerId is omitted, a new container (with DB + S3) is created for the app; if provided, the archive is deployed into that existing container. Returns the resulting container and its public URL.
| Name | Type | Req | Description |
|---|---|---|---|
| containerId | string | – | Optional UUID of an existing container to deploy into. Omit to create a new one. |
| tarballPath | string | yes | Absolute path on local disk to the app archive (.tar, .tar.gz, .tgz, .zip) |
No output schema declared.
No examples provided.
exec_command ~73
Run a shell command inside a container (like docker exec). Returns the combined stdout/stderr output and the exit code. Useful for inspecting files, installing packages, or restarting processes inside the container.
| Name | Type | Req | Description |
|---|---|---|---|
| command | string | yes | Shell command to execute inside the container |
| containerId | string | yes | UUID of the container |
No output schema declared.
No examples provided.
get_account ~64
Show the account's plan and capabilities: plan tier, container limit (plan base + add-ons), the memory sizes you may select, storage limit, how many always-on add-ons you hold, and whether containers auto-sleep. Use this to see what you're allowed to set.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
get_container ~54
Get full details of one container: id, subdomain, public URL, status, ports, database name and username, S3 bucket, volume path, and timestamps.
| Name | Type | Req | Description |
|---|---|---|---|
| containerId | string | yes | UUID of the container |
No output schema declared.
No examples provided.
get_logs ~57
Fetch recent logs from a container. Use this to debug crashes or check application output.
| Name | Type | Req | Description |
|---|---|---|---|
| containerId | string | yes | UUID of the container |
| tail | integer | – | Number of log lines to return from the end (default 200) |
No output schema declared.
No examples provided.
list_containers ~43
List all BasicDeploy containers owned by (or shared with) the authenticated user. Returns each container's id, subdomain, public URL, status, and creation time.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
set_always_on ~91
Turn a container's always-on (24/7, never sleeps) flag on or off. On Free this consumes a paid always-on add-on slot (fails if none is free); on Pro/Scale every container is always-on already. Returns the updated container.
| Name | Type | Req | Description |
|---|---|---|---|
| containerId | string | yes | The container's UUID. |
| enabled | boolean | yes | true to enable always-on, false to disable. |
No output schema declared.
No examples provided.
share_container ~119
Share a container with another BasicDeploy user by email, giving them access to it. The recipient is emailed a link that signs them in and opens the container. Optionally pass expiresInHours to make the share expire after that many hours (omit for a share that never expires).
| Name | Type | Req | Description |
|---|---|---|---|
| containerId | string | yes | UUID of the container |
| string | yes | Email address of the user to share with | |
| expiresInHours | integer | – | Optional. Hours until the share expires. Omit for an unlimited (never-expiring) share. |
No output schema declared.
No examples provided.