Skip to main content
Glama
blessed0x

scratch-unified-mcp

by blessed0x

Social Get User Info

social_get_user_info

Retrieve a Scratch user's public profile and preview their recent profile comments. Specify a username to look up account details; set recent_comments to 0 to skip the extra request.

Instructions

Fetch a Scratch user's profile.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYesThe account to look up.
recent_commentsNoHow many of the newest profile comments to include as a preview. Set 0 to skip the extra request. Use `social_get_comments` to page through them all.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
nameYes
wiwoYes
countryYes
about_meYes
icon_urlYes
usernameYes
join_dateYes
profile_urlYes
scratchteamYes
comments_noteYes
recent_commentsYes
is_followed_by_meYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description must carry behavioral disclosure. 'Fetch' clearly implies a read-only retrieval rather than a mutation, and the schema notes that including comments triggers an extra request. However, auth requirements, rate limits, and side-effect guarantees are not addressed.

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

Conciseness4/5

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

The main description is a single, front-loaded sentence with no filler. It is concise and immediately understandable, though it leaves details such as the comment preview behavior to the schema.

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?

For a simple fetch operation with two fully described parameters and an output schema, the definition is near-adequate. Still, the absence of annotations and the lack of explicit guidance about authentication or when this tool is the right choice create a minor gap.

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?

Schema description coverage is 100%, so both parameters are already documented. The description itself adds no parameter-level meaning beyond 'profile,' which is acceptable but not compensating for anything.

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

Purpose4/5

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

The description states a specific verb and resource: 'Fetch a Scratch user's profile.' This clearly identifies the operation and distinguishes it from sibling tools like social_get_project_info and social_get_comments, though 'profile' is not further elaborated.

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

Usage Guidelines3/5

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

Usage context is mostly implied rather than explicit. The input schema for recent_comments usefully routes comment pagination to social_get_comments, but the description itself provides no when-to-use guidance or exclusions for alternative profile-related tools.

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