# Netrun (npm · netrun-mcp)

Publish websites and Telegram bots to Netrun — upload a folder from your editor, get a URL

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

## Components

- npm · `netrun-mcp`: 68/100 (this document), [markdown](https://verifymcp.io/servers/fadeynotchenko-netrun/netrun-mcp.md), [page](https://verifymcp.io/servers/fadeynotchenko-netrun/netrun-mcp)

## Channel facts

- Registry: `npm`
- Package: `netrun-mcp`
- Version: `0.1.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-09-25.

- **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.
  - 31 of 98 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 2 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 1000 tokens (~142/item across 7 items; 7 tools + 0 resources), over budget; trim descriptions and params.
  - 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**: 88/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 65% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - All 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation.
  - An AI judge read all 8 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 Netrun MCP server?

Netrun runs locally as an npm package, launched with npx -y netrun-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 fadeynotchenko-netrun -- npx -y netrun-mcp
```

### Cursor

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

### VS Code

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

### Codex

```bash
codex mcp add fadeynotchenko-netrun -- npx -y netrun-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add fadeynotchenko-netrun --command npx --arg -y --arg netrun-mcp
```

### Hermes

```yaml
mcp_servers:
  fadeynotchenko-netrun:
    command: "npx"
    args: ["-y", "netrun-mcp"]
```

### Netclaw

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

### Vellum

```bash
assistant mcp add fadeynotchenko-netrun -t stdio -c npx -a -y netrun-mcp
```

### Other

```json
{
  "mcpServers": {
    "fadeynotchenko-netrun": {
      "command": "npx",
      "args": [
        "-y",
        "netrun-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 68, 0)

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

### 2026-09-22 (score 68)

First indexed and scored.

## MCP tools (7)

### `netrun_whoami` (~57 tokens)

Netrun account

Who the configured key belongs to, the current plan, project limit and — on the Free plan — how much free running time bots have left. Call it first when the user asks anything about their Netrun account or limits.

### `netrun_list_projects` (~35 tokens)

List Netrun projects

All projects of the account with id, kind, status and public URL. Use it to find project_id for other tools.

### `netrun_status` (~51 tokens)

Project status

Current state of one project: is it running, its URL, what blocks it, and — if the last publish failed — why (stage, reason, stderr tail).

Input parameters:

- `project_id` (integer, required)

### `netrun_logs` (~57 tokens)

Project logs

Last lines of the application output (stdout/stderr) — the first place to look when a bot is silent or a site errors.

Input parameters:

- `lines` (integer): How many trailing lines to return
- `project_id` (integer, required)

### `netrun_publish` (~296 tokens)

Publish to Netrun

Upload a project folder and put it online: creates a new project (pass name) or ships a new version of an existing one (pass project_id). Detects the language automatically (Python, Node, Go, Rust, PHP, static HTML, Docker, docker-compose…). Waits for the build and returns the public URL or the failure reason. If it returns needs_secrets, ask the user for the values and call again with "secrets".

Input parameters:

- `comment` (string): Short note for the version history, e.g. "fix /start handler"
- `name` (string): Name for a NEW project (becomes part of the URL). Omit when updating an existing project.
- `path` (string, required): Absolute path to the project folder on this machine
- `project_id` (integer): Existing project to update. Omit to create a new one.
- `secrets` (object): Secrets as {"BOT_TOKEN": "123:abc"}. Stored encrypted; delivered to the app as environment variables via .env. Ask the user for values — never invent them.
- `skip_secrets` (boolean): Publish even though the code seems to read env variables that were not provided. Use only after the user confirmed the app does not need them.
- `wait` (boolean): Wait for the build to finish (up to wait_seconds). false = return right after upload.
- `wait_seconds` (integer)

### `netrun_set_secrets` (~153 tokens)

Set project secrets

Save environment variables (tokens, API keys, passwords) for a project. Values are stored encrypted and never returned. By default the project is re-published so the app picks them up. Ask the user for the values — do not invent them.

Input parameters:

- `file` (string): Which env file to write to; ".env" unless the project uses another
- `project_id` (integer, required)
- `publish` (boolean): Re-publish right away so the running app receives the new values
- `secrets` (object, required): Secrets as {"BOT_TOKEN": "123:abc"}. Stored encrypted; delivered to the app as environment variables via .env. Ask the user for values — never invent them.

### `netrun_control` (~46 tokens)

Start / stop / restart

Start, stop or restart a project. Stopping a Free-plan bot does not pause its free running time.

Input parameters:

- `action` (string, required)
- `project_id` (integer, required)

## Diagnostics

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

## Score history

- 2026-09-25: 68
- 2026-09-24: 68
- 2026-09-23: 68
- 2026-09-22: 68

## Common questions

### What is the Netrun MCP server?

Netrun is an MCP server listed in the public MCP registry as io.github.fadeynotchenko/netrun. Publish websites and Telegram bots to Netrun, upload a folder from your editor, get a URL. This page covers its npm package (netrun-mcp).

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

Netrun scores 68 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 25 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 Netrun MCP server expose?

Netrun exposes 7 tools: netrun_whoami, netrun_list_projects, netrun_status, netrun_logs, netrun_publish, and 2 more. Their descriptions and schemas cost roughly 695 tokens of context every time the server is loaded.

### Is the Netrun MCP server still maintained?

Netrun is still listed as active in the MCP registry. We last reached this channel on 25 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 Netrun MCP server under?

Netrun 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/netrun-mcp
- Socket report: https://socket.dev/npm/package/netrun-mcp
- Repository: https://github.com/fadeynotchenko/netrun-mcp
- Website: https://netrun.io/mcp
- Changelog RSS feed: https://verifymcp.io/servers/fadeynotchenko-netrun/netrun-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/fadeynotchenko-netrun/netrun-mcp.json
- HTML version of this page: https://verifymcp.io/servers/fadeynotchenko-netrun/netrun-mcp
