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
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.
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
claude mcp add mediashareorg-yourimageshare -- npx -y yourimageshare-mcp
codex mcp add mediashareorg-yourimageshare -- npx -y yourimageshare-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mediashareorg-yourimageshare": {
"type": "local",
"command": [
"npx",
"-y",
"yourimageshare-mcp"
],
"enabled": true
}
}
} openclaw mcp add mediashareorg-yourimageshare --command npx --arg -y --arg yourimageshare-mcp
mcp_servers:
mediashareorg-yourimageshare:
command: "npx"
args: ["-y", "yourimageshare-mcp"] {
"mcpServers": {
"mediashareorg-yourimageshare": {
"command": "npx",
"args": [
"-y",
"yourimageshare-mcp"
]
}
}
} 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.
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 |
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.
delete_upload Delete an 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.
| Name | Type | Req | Description |
|---|---|---|---|
| id | string | yes | The upload id to delete (the `id` field returned by upload_image/list_uploads). |
| Name | Type | Req | Description |
|---|---|---|---|
| deleted | boolean | yes | – |
| id | string | yes | – |
No examples provided.
list_uploads List your 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.
| Name | Type | Req | Description |
|---|---|---|---|
| page | integer | – | Page number. Defaults to 1. |
| Name | Type | Req | Description |
|---|---|---|---|
| data | array | yes | – |
| meta | object | yes | – |
No examples provided.
upload_image Upload an image or video ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| 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. |
| Name | Type | Req | Description |
|---|---|---|---|
| direct | string | yes | 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 | yes | ISO 8601 auto-delete timestamp, or null if the upload never expires. |
| id | string | yes | Unique identifier for this upload. Pass to delete_upload to remove it. |
| path | string | yes | Raw storage URL - the literal file, e.g. i.yourimageshare.com/xxx.webp. |
| src | string | yes | Direct/embeddable file URL - use this for <img>/<video> src attributes. |
| type | string | yes | – |
No examples provided.