Skip to main content
Glama
blessed0x

scratch-unified-mcp

by blessed0x

Social Check Inbox

social_check_inbox

Check the active account's message inbox across all three Scratch endpoints: activity, Scratch Team, and invitations. Includes unread counts and flags to reveal unread items outside the activity feed.

Instructions

Check the active account's message inbox.

Scratch splits the inbox across three endpoints with independent unread state, and this reports all of them:

  • unread_count + messages: ordinary activity (comments, follows, loves). The count is genuinely unread, but the list is simply the newest messages whether read or not, so the two do not necessarily correspond.

  • scratch_team_messages: alerts from the Scratch Team.

  • invitation: a pending "become a Scratcher" invite, carrying its own unread flag.

unread_elsewhere is true when something is unread outside the activity feed, so an unread_count of 0 does not by itself mean an empty inbox.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many messages to return (1-40).
offsetNoHow many of the newest messages to skip.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteYes
limitYes
offsetYes
messagesYes
returnedYes
invitationYes
unavailableYes
unread_countYes
unread_elsewhereYes
scratch_team_messagesYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the behavioral disclosure burden. It explains nuanced behaviors: the inbox is split across three endpoints with independent unread state, unread_count may not correspond to the messages list, and unread_elsewhere means a zero count does not imply an empty inbox. This goes beyond a simple read operation and materially protects against misinterpretation.

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: a one-line summary, a bulleted breakdown of the three subcomponents, and a closing caveat. Every sentence adds meaningful context, no repetition or fluff.

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?

The description covers the full scope of the response semantics, including edge cases around unread counts and list contents. Since an output schema exists, return values need not be repeated here. The description is complete enough for an agent to correctly interpret the results without additional assumptions.

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%, with limit and offset already clearly documented in the input schema. The description adds no additional parameter semantics, which is acceptable because the structured fields already carry the meaning.

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 specific verb and resource: 'Check the active account's message inbox.' It then clearly enumerates what is reported (three endpoints, unread_count, messages, scratch_team_messages, invitation), making the tool's function unambiguous and distinct from siblings like social_get_comments.

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 establishes clear context: it checks the active account's inbox and aggregates all three inbox endpoints. It does not explicitly name alternatives or when-not-to-use conditions, but the scope is well defined enough that an agent can infer appropriate 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