# io.github.rukh-debug/rustypaste-mcp (npm · @rukh-pub/rustypaste-mcp)

An MCP server that wraps the rustypaste API

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

## Components

- npm · `@rukh-pub/rustypaste-mcp`: 62/100 (this document), [markdown](https://verifymcp.io/servers/rukh-debug-rustypaste-mcp/rukh-pub-rustypaste-mcp.md), [page](https://verifymcp.io/servers/rukh-debug-rustypaste-mcp/rukh-pub-rustypaste-mcp)

## Channel facts

- Registry: `npm`
- Package: `@rukh-pub/rustypaste-mcp`
- Version: `1.0.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-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (108 of 109), 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 (108 of 109), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 32/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: no license is declared.
  - Actively maintained (last published 150 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 (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1050 tokens (~150/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**: 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.
- **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

### Claude

```bash
claude mcp add rukh-debug-rustypaste-mcp -- npx -y @rukh-pub/rustypaste-mcp
```

### Codex

```bash
codex mcp add rukh-debug-rustypaste-mcp -- npx -y @rukh-pub/rustypaste-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rukh-debug-rustypaste-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@rukh-pub/rustypaste-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add rukh-debug-rustypaste-mcp --command npx --arg -y --arg @rukh-pub/rustypaste-mcp
```

### Hermes

```yaml
mcp_servers:
  rukh-debug-rustypaste-mcp:
    command: "npx"
    args: ["-y", "@rukh-pub/rustypaste-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "rukh-debug-rustypaste-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@rukh-pub/rustypaste-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, +37)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [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] License: unverified → fail
- [functional regression] Capabilities: pass → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass

### 2026-08-01 (score 25, −20)

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

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

First indexed and scored.

## MCP tools (7)

### `rustypaste_paste_text` (~180 tokens)

Paste Text

Upload text content to rustypaste and get a shareable URL.

Use this to paste code snippets, notes, logs, or any text content.
The text is uploaded as a file and a URL is returned.

Args:
  \- content (string): The text to paste (required, non-empty)
  \- filename (string, optional): Name for the paste file (default: "paste.txt")

Returns:
  The URL of the created paste.

Examples:
  \- Paste a log excerpt: content="error at line 42: null pointer"
  \- Paste code with a name: content="def main(): ...", filename="app.py"

Input parameters:

- `content` (string, required): The text content to paste
- `filename` (string): Optional filename for the paste (e.g. 'notes.md'). Defaults to 'paste.txt'

### `rustypaste_upload_file` (~136 tokens)

Upload File

Upload a local file to rustypaste and get a shareable URL.

Reads a file from disk and uploads it to the rustypaste server.
Supports any file type. The returned URL can be shared to download the file.

Args:
  \- file_path (string): Absolute path to the file (e.g. "/home/user/doc.pdf")

Returns:
  The URL of the uploaded file.

Examples:
  \- Upload an image: file_path="/home/user/screenshot.png"
  \- Upload a document: file_path="/tmp/report.pdf"

Input parameters:

- `file_path` (string, required): Absolute path to the file to upload

### `rustypaste_upload_file_with_expiry` (~228 tokens)

Upload File with Expiry

Upload a local file to rustypaste with an expiration time.

The file will be available at the returned URL until the expiry time elapses,
after which it is automatically deleted from the server.

Args:
  \- file_path (string): Absolute path to the file (e.g. "/home/user/doc.pdf")
  \- expiry (string): How long the file should be available (e.g. "10min", "1h", "1d", "1w")

Returns:
  The URL of the uploaded file.

Examples:
  \- Upload for 1 hour: file_path="/tmp/log.txt", expiry="1h"
  \- Upload for 7 days: file_path="/home/user/img.png", expiry="7d"

Input parameters:

- `expiry` (string, required): Expiry duration string (e.g. '10min', '1h', '1d', '1w'). Supported units: s/sec, min, h/hour, d/day, w/week, M/month
- `file_path` (string, required): Absolute path to the file to upload

### `rustypaste_oneshot_file` (~147 tokens)

One-Shot File Upload

Upload a file as a one-shot link — it can only be viewed/downloaded once.

After the first access, the file is automatically deleted from the server.
Useful for sharing sensitive or temporary files securely.

Args:
  \- file_path (string): Absolute path to the file (e.g. "/home/user/secret.txt")

Returns:
  The one-shot URL. The file will be deleted after the first download.

Examples:
  \- Share a secret: file_path="/tmp/credentials.txt"
  \- One-time image share: file_path="/home/user/photo.jpg"

Input parameters:

- `file_path` (string, required): Absolute path to the file to upload as a one-shot

### `rustypaste_oneshot_url` (~116 tokens)

One-Shot URL Redirect

Create a one-shot URL redirect — the link expires after a single visit.

Wraps a URL in a one-time redirect. After the first person clicks it,
the redirect is deleted from the server.

Args:
  \- url (string): The target URL to wrap (must be a valid URL)

Returns:
  The one-shot redirect URL.

Examples:
  \- One-time link: url="https://example.com/sensitive-doc"

Input parameters:

- `url` (string, required): The URL to create a one-shot redirect for

### `rustypaste_shorten_url` (~99 tokens)

Shorten URL

Shorten a long URL using rustypaste.

Creates a short redirect URL that points to the original long URL.

Args:
  \- url (string): The URL to shorten (must be a valid URL)

Returns:
  The shortened URL.

Examples:
  \- Shorten a link: url="https://example.com/very/long/path/to/resource?with=params"

Input parameters:

- `url` (string, required): The long URL to shorten

### `rustypaste_upload_remote` (~144 tokens)

Upload from Remote URL

Upload a file from a remote URL to rustypaste.

The rustypaste server fetches the file from the provided URL and hosts it.
Useful for mirroring or re-hosting remote resources.

Args:
  \- url (string): The remote file URL to fetch and upload (must be a valid URL)

Returns:
  The rustypaste URL for the uploaded file.

Examples:
  \- Mirror an image: url="https://example.com/photo.jpg"
  \- Re-host a file: url="https://cdn.example.com/release-v1.2.tar.gz"

Input parameters:

- `url` (string, required): The remote file URL to upload to rustypaste

## Diagnostics

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

## Score history

- 2026-08-03: 62
- 2026-08-02: 62
- 2026-08-01: 25
- 2026-07-31: 45
- 2026-07-30: 45
- 2026-07-28: 45
- 2026-07-27: 45

## Links

- npm package: https://www.npmjs.com/package/@rukh-pub/rustypaste-mcp
- Socket report: https://socket.dev/npm/package/@rukh-pub/rustypaste-mcp
- Repository: https://github.com/rukh-debug/rustypaste-mcp
- Changelog RSS feed: https://verifymcp.io/servers/rukh-debug-rustypaste-mcp/rukh-pub-rustypaste-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/rukh-debug-rustypaste-mcp/rukh-pub-rustypaste-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/rukh-debug-rustypaste-mcp/rukh-pub-rustypaste-mcp
