Skip to main content
Glama

Upload Media

upload_media

FOR CLAUDE DESKTOP ONLY (with filesystem access). For Claude.ai/web: Use create_upload_session instead - it provides a browser upload link.

Upload local media to cloud storage, returning a public HTTPS URL.

WHEN TO USE: • Instagram, LinkedIn, Threads, X: REQUIRED for local files before calling publish_content • TikTok: NOT NEEDED - pass local path directly to publish_content

SUPPORTED FORMATS: • Images: jpg, png, gif, webp (max 10MB) • Videos: mp4, mov, webm (max 100MB)

Returns { url: 'https://...' } for use in publish_content mediaUrl parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
folderNoOptional folder name for organizing uploads
filePathNoLocal file path to upload (e.g., ~/Photos/image.jpg)
mediaUrlNoExisting public URL to validate (alternative to filePath)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.6/5.0
Behavior4/5

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

The description adds meaningful behavior beyond annotations: platform restrictions (Claude Desktop), max file sizes (10MB images/100MB videos), supported formats, and the exact return value shape ({ url: 'https://...' }). These details are not in the annotations and give the agent practical expectations. The only missing piece is failure/error behavior, but annotations already cover the write/non-idempotent nature.

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?

The description is well-organized with clear headers (WHEN TO USE, SUPPORTED FORMATS, Returns) and every sentence earns its place. It is detailed without being redundant. The length is justified by the need to communicate platform-specific rules and constraints.

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

Completeness4/5

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

The description covers platform limitations, formats, size limits, return value, and integration context, making it quite complete for a tool with three optional-looking parameters. The notable gap is the ambiguity around parameter requirements (one of filePath/mediaUrl likely needed) and mutual exclusivity, which is not stated. This prevents a perfect score.

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

Parameters4/5

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

The input schema already documents all three parameters (folder, filePath, mediaUrl) with descriptions, so the baseline is 3. The description adds value by explaining that mediaUrl is an 'alternative to filePath' and connecting the return URL to the publish_content mediaUrl parameter. However, it fails to explicitly state that either filePath or mediaUrl is required (and arguably mutually exclusive), which would be helpful given the schema lists no required parameters.

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?

The description opens with a clear, specific statement: 'Upload local media to cloud storage, returning a public HTTPS URL.' It further distinguishes itself from sibling tools by restricting usage to 'FOR CLAUDE DESKTOP ONLY' and naming the alternative ('For Claude.ai/web: Use create_upload_session instead'). This precisely identifies the tool's function and scope.

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

Usage Guidelines5/5

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

The 'WHEN TO USE' section provides explicit platform-specific guidance: required for Instagram, LinkedIn, Threads, X before publish_content, and explicitly not needed for TikTok (pass local path directly). It also clearly states when NOT to use the tool (Claude.ai/web) and names the alternative tool. This is exemplary usage guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3/5.0
Disambiguation2/5

With 148 tools, there is significant overlap. For example, generate_content, publish_ai, generate_post_bundle, and request_project_content all generate content; get_analytics, get_unified_analytics, get_post_analytics, get_ad_performance, and get_unified_ad_report all fetch performance metrics; and list_inbox vs list_conversations blur comment and conversation management. Descriptions help, but boundaries between tools are often unclear.

Naming Consistency3/5

Most tools follow a verb_noun pattern (e.g., list_teams, create_goal, delete_post), but there are notable deviations: create_library_item vs save_to_library, publish_content vs publish_ai, schedule_content vs schedule_content_advanced, and connect_platform vs connect_connector. Mixed prefixes like 'autopilot_', 'check_', and 'get_' are fine, but overlapping verbs and a hyphen in 'connect_linkedin-page' reduce consistency.

Tool Count1/5

148 tools is extreme for any server. Even for a broad social media management platform, this is far beyond what an agent can effectively navigate. The count is unwieldy and suggests the surface should be split into multiple focused servers (publishing, analytics, connectors, workflows, etc.).

Completeness3/5

The core social publishing workflow is well covered (create, schedule, publish, edit, delete, retry), and there are extensive features for analytics, workflows, connectors, and AI agents. However, some resources have CRUD gaps: no update/delete for brand voices, no delete_project, no update/delete for Product Hunt goals, and no explicit get_workflow. These are workable but notable omissions.

Resources