# online.fileshareforagents/mcp (npm · fileshareforagents-mcp)

Storage and file sharing for AI agents. No account, no API key: $0.01 USDC per call (x402, Base).

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `fileshareforagents-mcp`
- Version: `0.1.2`
- 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-20.

- **Supply Chain Security**: 99/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 114 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 1 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 80/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1198 tokens (~92/item across 13 items; 13 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**: 95/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 84% 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 4 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "revoke_links" implies "revoke" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 14 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 online.fileshareforagents/mcp server?

online.fileshareforagents/mcp runs locally as an npm package, launched with npx -y fileshareforagents-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 online-fileshareforagents-mcp -- npx -y fileshareforagents-mcp
```

### Cursor

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

### VS Code

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

### Codex

```bash
codex mcp add online-fileshareforagents-mcp -- npx -y fileshareforagents-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add online-fileshareforagents-mcp --command npx --arg -y --arg fileshareforagents-mcp
```

### Hermes

```yaml
mcp_servers:
  online-fileshareforagents-mcp:
    command: "npx"
    args: ["-y", "fileshareforagents-mcp"]
```

### Netclaw

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

### Vellum

```bash
assistant mcp add online-fileshareforagents-mcp -t stdio -c npx -a -y fileshareforagents-mcp
```

### Other

```json
{
  "mcpServers": {
    "online-fileshareforagents-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "fileshareforagents-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-18 (score 69)

First indexed and scored.

## MCP tools (13)

### `pricing` (~21 tokens)

Prices, limits, allowed content types and the payment network. Free.

### `wallet_status` (~30 tokens)

The paying wallet's address and USDC balance on the configured network, and how to fund it. Free.

### `store` (~171 tokens)

Store JSON, text or a file for 1 to 365 days (default 7). Costs $0.01 USDC and includes 100 reads. Give exactly one of content (text/JSON), content_base64 (binary) or file_path (a local file). Returns id, a one-time secret, expiry and links. Keep the secret.

Input parameters:

- `content` (string): Text or JSON to store.
- `content_base64` (string): Binary content, base64-encoded.
- `content_type` (string): MIME type. Detected from the content when omitted.
- `file_path` (string): Path of a local file to upload.
- `label` (string): A label to recognise the item later.
- `ttl_days` (integer): Days to keep the item (default 7).

### `retrieve` (~102 tokens)

Retrieve an item's content. Counts one read. Text and JSON are returned inline; binary content is returned base64-encoded unless save_to (a local path) is given, in which case it is written there.

Input parameters:

- `id` (string, required): Item id, e.g. itm_...
- `save_to` (string): Local path to write the content to instead of returning it.
- `secret` (string, required): The item's secret (sk_...), returned once by store.

### `status` (~65 tokens)

Expiry, remaining reads, size, type and whether a password is set. Free, does not count as a read.

Input parameters:

- `id` (string, required): Item id, e.g. itm_...
- `secret` (string, required): The item's secret (sk_...), returned once by store.

### `extend` (~79 tokens)

Set a new expiry, ttl_days from now (1 to 365; must be later than the current expiry). Costs $0.01 USDC.

Input parameters:

- `id` (string, required): Item id, e.g. itm_...
- `secret` (string, required): The item's secret (sk_...), returned once by store.
- `ttl_days` (integer, required)

### `buy_reads` (~63 tokens)

Add 1000 reads to an item. Costs $0.01 USDC. No secret needed, so anyone can top up an item they were given. Do this before sharing with many readers.

Input parameters:

- `id` (string, required): Item id, e.g. itm_...

### `share_link` (~142 tokens)

Create a signed, time-limited URL that lets anyone (a human in a browser, another agent) read the item without the secret, for expires_in seconds (clamped to the item's expiry). Each open counts one read. The URL itself is the credential: it bypasses any password, so send it only to the intended reader. Free. For a password-protected address instead, use set_password.

Input parameters:

- `expires_in` (integer, required): Link lifetime in seconds, e.g. 3600.
- `id` (string, required): Item id, e.g. itm_...
- `secret` (string, required): The item's secret (sk_...), returned once by store.

### `revoke_links` (~68 tokens)

Invalidate every share link issued so far for the item (new ones can still be created). The password address is unaffected. Free.

Input parameters:

- `id` (string, required): Item id, e.g. itm_...
- `secret` (string, required): The item's secret (sk_...), returned once by store.

### `set_password` (~117 tokens)

Protect the item's public address with a password (12 to 128 characters) and return that address. Anyone who opens it gets a password form (browsers) or can send the password in an x-password header (agents); each successful open counts one read. Replaces any previous password. Signed share_link URLs are not affected. Free.

Input parameters:

- `id` (string, required): Item id, e.g. itm_...
- `password` (string, required)
- `secret` (string, required): The item's secret (sk_...), returned once by store.

### `remove_password` (~62 tokens)

Remove the password; the public address then stops serving the item (signed share links still work). Free.

Input parameters:

- `id` (string, required): Item id, e.g. itm_...
- `secret` (string, required): The item's secret (sk_...), returned once by store.

### `delete` (~52 tokens)

Delete the item now. Permanent, no refund. Free.

Input parameters:

- `id` (string, required): Item id, e.g. itm_...
- `secret` (string, required): The item's secret (sk_...), returned once by store.

### `feedback` (~74 tokens)

Send feedback to the service operator: a missing feature, a bug, an abuse report about an item, or anything else. Free.

Input parameters:

- `item_id` (string)
- `message` (string, required)
- `request_id` (string): The request_id from an error, if reporting one.
- `type` (string, required)

## Diagnostics

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

## Score history

- 2026-09-20: 69
- 2026-09-19: 69
- 2026-09-18: 69

## Common questions

### What is the online.fileshareforagents/mcp server?

online.fileshareforagents/mcp is listed in the public MCP registry as online.fileshareforagents/mcp. Storage and file sharing for AI agents. No account, no API key: $0.01 USDC per call (x402, Base). This page covers its npm package (fileshareforagents-mcp).

### Is the online.fileshareforagents/mcp server safe to use?

online.fileshareforagents/mcp scores 69 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 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 online.fileshareforagents/mcp server expose?

online.fileshareforagents/mcp exposes 13 tools: pricing, wallet_status, store, retrieve, status, and 8 more. Their descriptions and schemas cost roughly 1,046 tokens of context every time the server is loaded.

### Is the online.fileshareforagents/mcp server still maintained?

online.fileshareforagents/mcp is still listed as active in the MCP registry. We last reached this channel on 20 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 online.fileshareforagents/mcp server under?

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