Skip to main content
Glama
blessed0x

scratch-unified-mcp

by blessed0x

Social Set Pfp

social_set_pfp

Set the profile picture for the active Scratch session by uploading a PNG, JPG, or GIF file, after verifying it does not exceed 500x500 pixels to avoid rejection.

Instructions

Set the profile picture of the active session's account.

Scratch caps avatars at 500x500 pixels. An oversized image is rejected with HTTP 200 and an error in the body, so this checks the size before uploading and reads the response rather than assuming success.

SVG is not accepted by Scratch; rasterise it first (for example inkscape logo.svg -w 500 -h 500 -o logo.png).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileYesPath to a .png, .jpg or .gif no larger than 500x500.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full behavior burden and does well by disclosing the 500x500 cap, the deceptive HTTP 200 error body, the size pre-check, and the SVG rejection. It is missing some details like auth failure or rate limits, but the covered edge cases are highly relevant for successful invocation.

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 front-loaded with the core action, then packs critical caveats into a few purposeful sentences. The Inkscape example is directly actionable, and there is no filler or redundant restating of the tool name.

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

Completeness5/5

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

For a single-parameter tool with full schema coverage and an output schema, the description covers the necessary operational context: session scope, file constraints, failure mode, and SVG handling. An agent has enough information to invoke it correctly.

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?

Schema coverage is 100%, so the baseline is 3. The description adds value beyond the schema by explaining why the size limit matters, warning that SVG is not accepted, and giving a concrete rasterization command, which helps the agent prepare the file correctly.

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 states a specific verb ('Set') and resource ('profile picture of the active session's account'), which clearly identifies what the tool does. This differentiates it from sibling tools like social_set_bio and project_set_thumbnail, which target different resources.

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?

The description gives clear context: it operates on the active session's account and is for setting the profile picture. It does not explicitly name alternative tools or say when not to use them, but the context is strong enough that an agent can infer the intended use.

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

Deploy Server

Other Tools