Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.MediaShareORG/yourimageshare

NPM · YOURIMAGESHARE-MCP · SCANNED AUG 17

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

Available components

70 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 30 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency48
  • Source repository is publicly reachable at the declared URL. View diagnostics → Pass
  • Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 0 days ago).Pass
  • Publishes a security disclosure policy (SECURITY.md).Pass
Schema Quality & AI Usability79
  • AI-judged instruction clarity (excellent).Pass
  • 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. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

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

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · yourimageshare-mcp

# add to Claude Code
claude mcp add mediashareorg-yourimageshare -- npx -y yourimageshare-mcp
# add to Codex CLI
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
    }
  }
}
# add to OpenClaw
openclaw mcp add mediashareorg-yourimageshare --command npx --arg -y --arg yourimageshare-mcp
# ~/.hermes/config.yaml
mcp_servers:
  mediashareorg-yourimageshare:
    command: "npx"
    args: ["-y", "yourimageshare-mcp"]
// mcp.json
{
  "mcpServers": {
    "mediashareorg-yourimageshare": {
      "command": "npx",
      "args": [
        "-y",
        "yourimageshare-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 17 Aug 26 +11
    • Known CVEs: unverified → pass security
    • Dependency health: unverified → 0.85 functional
  • 16 Aug 26 59

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 17 Aug 2026 · Analysed npm/yourimageshare-mcp@1.0.6

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 96 packages
Packages resolved 96
Stale 30
Tree resolution Complete
MCP tools · 3 exposed · ~481 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
delete_upload ~104

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.

NameTypeReqDescription
idstringyesThe upload id to delete (the `id` field returned by upload_image/list_uploads).
NameTypeReqDescription
deletedbooleanyes
idstringyes

No examples provided.

list_uploads ~117

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.

NameTypeReqDescription
pageintegerPage number. Defaults to 1.
NameTypeReqDescription
dataarrayyes
metaobjectyes

No examples provided.

upload_image ~260

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.

NameTypeReqDescription
base64stringBase64-encoded file contents. Requires `filename`.
expiresInintegerAuto-delete after this many seconds (60 to 2,592,000 = 30 days). Omit for a permanent upload.
filenamestringFilename to use. Required with `base64`; inferred from `path` otherwise.
pathstringLocal file path to upload.
NameTypeReqDescription
directstringyesThe shareable page URL (title, description, comments, share buttons). Despite the field name, this is NOT a direct file link - use `src` for that.
expires_atstring|nullyesISO 8601 auto-delete timestamp, or null if the upload never expires.
idstringyesUnique identifier for this upload. Pass to delete_upload to remove it.
pathstringyesRaw storage URL - the literal file, e.g. i.yourimageshare.com/xxx.webp.
srcstringyesDirect/embeddable file URL - use this for <img>/<video> src attributes.
typestringyes

No examples provided.