# io.github.MediaShareORG/yourimageshare (npm · yourimageshare-mcp)

MCP server exposing the YourImageShare upload API (upload/list/delete) as tools for AI agents.

- Trust score: 70/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-17

## Components

- npm · `yourimageshare-mcp`: 70/100 (this document), [markdown](https://verifymcp.io/servers/mediashareorg-yourimageshare/yourimageshare-mcp.md), [page](https://verifymcp.io/servers/mediashareorg-yourimageshare/yourimageshare-mcp)

## Channel facts

- Registry: `npm`
- Package: `yourimageshare-mcp`
- Version: `1.0.6`
- 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-17.

- **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.
  - 30 of 96 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 48/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 0 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 79/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 481 tokens (~160/item across 3 items; 3 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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **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 mediashareorg-yourimageshare -- npx -y yourimageshare-mcp
```

### Codex

```bash
codex mcp add mediashareorg-yourimageshare -- npx -y yourimageshare-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add mediashareorg-yourimageshare --command npx --arg -y --arg yourimageshare-mcp
```

### Hermes

```yaml
mcp_servers:
  mediashareorg-yourimageshare:
    command: "npx"
    args: ["-y", "yourimageshare-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "mediashareorg-yourimageshare": {
      "command": "npx",
      "args": [
        "-y",
        "yourimageshare-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-17 (score 70, +11)

- [security improvement] Known CVEs: unverified → pass
- [functional improvement] Dependency health: unverified → 0.85

### 2026-08-16 (score 59)

First indexed and scored.

## MCP tools (3)

### `upload_image` (~260 tokens)

Upload an image or video

Upload an image or video to YourImageShare and get back a shareable link. Accepts JPG, PNG, GIF, WEBP, AVIF, BMP, TIFF, HEIC/HEIF images and MP4, WEBM, AVI video, 100KB-200MB. Provide `path` for a file on disk this server can read, or `base64` + `filename` for in-memory content (e.g. no local filesystem access) - never both. Returns three different URLs for the same upload (see output fields): a raw storage link, a direct embeddable link, and a shareable page link - pick whichever fits where it's going. Errors (oversized/unsupported file, bad API key, rate limit) come back as a normal tool error, not a thrown exception.

Input parameters:

- `base64` (string): Base64-encoded file contents. Requires `filename`.
- `expiresIn` (integer): Auto-delete after this many seconds (60 to 2,592,000 = 30 days). Omit for a permanent upload.
- `filename` (string): Filename to use. Required with `base64`; inferred from `path` otherwise.
- `path` (string): Local file path to upload.

Output parameters:

- `direct` (string): The shareable page URL (title, description, comments, share buttons). Despite the field name, this is NOT a direct file link - use `src` for that.
- `expires_at` (string|null): ISO 8601 auto-delete timestamp, or null if the upload never expires.
- `id` (string): Unique identifier for this upload. Pass to delete_upload to remove it.
- `path` (string): Raw storage URL - the literal file, e.g. i.yourimageshare.com/xxx.webp.
- `src` (string): Direct/embeddable file URL - use this for <img>/<video> src attributes.
- `type` (string)

### `list_uploads` (~117 tokens)

List your uploads

List your YourImageShare uploads, newest first, 50 per page - use this to find an upload's `id` (needed by `delete_upload`) when you only have its URL or remember it by content, since there's no lookup-by-URL endpoint. Each result includes the same three link fields `upload_image` returns, plus `title` and `created_at`. An out-of-range page number returns an empty `data` array, not an error.

Input parameters:

- `page` (integer): Page number. Defaults to 1.

Output parameters:

- `data` (array)
- `meta` (object)

### `delete_upload` (~104 tokens)

Delete an upload

Permanently delete one of your YourImageShare uploads by `id` - irreversible, the file and its links stop working immediately. Get the `id` from upload_image's response right after uploading, or from list_uploads if you no longer have it. Errors (not found, already deleted, wrong owner) come back as a normal tool error.

Input parameters:

- `id` (string, required): The upload id to delete (the `id` field returned by upload_image/list_uploads).

Output parameters:

- `deleted` (boolean)
- `id` (string)

## Diagnostics

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

## Score history

- 2026-08-17: 70
- 2026-08-16: 59

## Links

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