Skip to main content
Glama
rajatsmtp

NexusPress Draft MCP

by rajatsmtp

upload_image_from_url

Make a temporary image URL permanent by uploading it to Cloudinary, ensuring draft images persist after the source link expires.

Instructions

Upload an image from a temporary URL (e.g. from DALL-E) to Cloudinary to make it permanent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description carries the full behavioral burden. It usefully discloses the destination service (Cloudinary) and the permanence effect of the operation, but says nothing about authentication requirements, overwrite/duplicate behavior, size or source-access constraints, or what identifier comes back.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with zero filler; the action, the input source, and the outcome are all stated compactly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and no annotations, the description should tell the agent what comes back (the permanent Cloudinary URL/ID) so it can be chained into article drafts. That return-value information is absent, and no auth or failure behavior is covered, leaving a real gap for a no-annotation, no-output-schema tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

One parameter with 0% schema description coverage, so the schema only supplies the name 'url' and a URI format. The phrase 'temporary URL' adds real meaning (an externally hosted, likely expiring link that must be publicly fetchable) but does not specify accessibility, expiry, or format expectations.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Specific verb (upload), resource (image), source (temporary URL), and destination (Cloudinary), with the goal of permanence stated explicitly. It is fully distinguishable from the sibling tools, none of which relate to image ingestion.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives a concrete triggering context ('temporary URL, e.g. from DALL-E') that an agent can pattern-match on when a generator returns an ephemeral link. It does not name when-not-to-use it or any alternative upload path, so it stops short of full routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.