Skip to main content
Glama
MediaShareORG

YourImageShare

Official

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
YIS_API_KEYYesYour YourImageShare API key.
YIS_BASE_URLNoOverride the API base URL (default https://yourimageshare.com/api). For testing only.https://yourimageshare.com/api

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
upload_imageA

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.

list_uploadsA

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.

delete_uploadA

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.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.7/5.0

Scored across 3 tools

Disambiguation5/5

The three tools have clearly distinct operations: upload creates a shareable upload, list enumerates existing uploads, and delete removes one by ID. There is no overlap or ambiguity in their purposes.

Naming Consistency5/5

All tools follow the same verb_noun pattern: upload_image, list_uploads, delete_upload. The minor singular/plural difference is not confusing and the naming style is consistent across the set.

Tool Count5/5

Three tools is well-scoped for a simple image-sharing server. Each tool covers a necessary core operation and no redundant tools are present.

Completeness5/5

The tool set covers the full lifecycle of a hosted upload: create via upload_image, read/search via list_uploads, and delete via delete_upload. There are no dead ends or missing core operations for this domain.

Maintenance

ActivityNo data
ResponsivenessNo issues