# Antideploy (npm · antideploy-mcp)

Deploy an app to Antideploy from a coding agent. No Dockerfile, no YAML, no cloud console.

- Trust score: 69/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-26

## Components

- npm · `antideploy-mcp`: 69/100 (this document), [markdown](https://verifymcp.io/servers/com-antideploy-antideploy-mcp/antideploy-mcp.md), [page](https://verifymcp.io/servers/com-antideploy-antideploy-mcp/antideploy-mcp)

## Channel facts

- Registry: `npm`
- Package: `antideploy-mcp`
- Version: `0.1.3`
- 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-09-26.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 34 of 101 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 5 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 79/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 370 tokens (~74/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 75/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - 0 of 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "deploy" implies "deploy" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 6 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

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

## Install

### How do I install the Antideploy MCP server?

Antideploy runs locally as an npm package, launched with npx -y antideploy-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add com-antideploy-antideploy-mcp -- npx -y antideploy-mcp
```

### Cursor

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

### VS Code

```json
{
  "servers": {
    "com-antideploy-antideploy-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "antideploy-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add com-antideploy-antideploy-mcp -- npx -y antideploy-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-antideploy-antideploy-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "antideploy-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-antideploy-antideploy-mcp --command npx --arg -y --arg antideploy-mcp
```

### Hermes

```yaml
mcp_servers:
  com-antideploy-antideploy-mcp:
    command: "npx"
    args: ["-y", "antideploy-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "com-antideploy-antideploy-mcp": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "antideploy-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add com-antideploy-antideploy-mcp -t stdio -c npx -a -y antideploy-mcp
```

### Other

```json
{
  "mcpServers": {
    "com-antideploy-antideploy-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "antideploy-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-09-25 (score 69, 0)

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

### 2026-09-20 (score 69)

First indexed and scored.

## MCP tools (5)

### `deploy` (~155 tokens)

Deploy the project

Package a project directory and deploy it. Sends the whole directory, not just an entry point — a deploy containing one file builds successfully and then serves a page whose assets all 404. Returns a taskId to poll with `deployment_status`. A `.env` in the directory is uploaded on purpose: the values go into the encrypted secret store and the file itself is dropped from the build. Say so if the user may not expect it.

Input parameters:

- `directory` (string): Project directory. Defaults to the working directory of this server.
- `env` (object): Variables to store with this deploy. Write-only; never readable back.
- `force` (boolean): Rebuild even when the content is byte-for-byte identical to the last deploy.

### `deployment_status` (~51 tokens)

Check a deployment

Progress for one deployment: status, per-step detail, the analyzed spec, warnings and hazards. Poll until the status is succeeded or failed.

Input parameters:

- `taskId` (string, required): The taskId returned by `deploy`.

### `list_env` (~20 tokens)

List environment variable names

Names only. The platform never returns values, by design.

### `set_env` (~35 tokens)

Set environment variables

Store or replace environment variables for this application. Write-only.

Input parameters:

- `env` (object, required): Variables to store, as name/value pairs.

### `api_info` (~34 tokens)

Read the API's own manual

The platform's self-description: endpoints, limits and current behaviour. Worth reading whenever something here disagrees with what the server does.

## Diagnostics

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

## Score history

- 2026-09-26: 69
- 2026-09-25: 69
- 2026-09-24: 69
- 2026-09-23: 69
- 2026-09-22: 69
- 2026-09-21: 69
- 2026-09-20: 69

## Common questions

### What is the Antideploy MCP server?

Antideploy is an MCP server listed in the public MCP registry as com.antideploy/antideploy-mcp. Deploy an app to Antideploy from a coding agent. No Dockerfile, no YAML, no cloud console. This page covers its npm package (antideploy-mcp).

### Is the Antideploy MCP server safe to use?

Antideploy scores 69 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 26 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Antideploy MCP server expose?

Antideploy exposes 5 tools: deploy, deployment_status, list_env, set_env, api_info. Their descriptions and schemas cost roughly 295 tokens of context every time the server is loaded.

### Is the Antideploy MCP server still maintained?

Antideploy is still listed as active in the MCP registry. We last reached this channel on 26 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the Antideploy MCP server under?

Antideploy declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/antideploy-mcp
- Socket report: https://socket.dev/npm/package/antideploy-mcp
- Repository: https://github.com/antideploy/antideploy-mcp
- Website: https://antideploy.com/docs/deploying/mcp
- Changelog RSS feed: https://verifymcp.io/servers/com-antideploy-antideploy-mcp/antideploy-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-antideploy-antideploy-mcp/antideploy-mcp.json
- HTML version of this page: https://verifymcp.io/servers/com-antideploy-antideploy-mcp/antideploy-mcp
