Skip to main content
Glama
sadik004
by sadik004

reddit_submit_post

Publish a text or link post to any subreddit or your own profile with title, markdown body, URL, flair, and NSFW/spoiler options.

Instructions

Publish a post (text/markdown or link) to any subreddit or own profile ('u/me').

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoTarget destination URL (for link posts)
bodyNoPost markdown body (for text posts)
flairNoPost flair text
titleYesPost title
targetYesSubreddit name (e.g. 'webscraping', 'Python') or 'u/me' for own profile
is_nsfwNo
is_spoilerNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description alone must disclose the behavior. It correctly implies a write/mutation operation, but it does not mention permanence, visibility, authentication requirements, rate limits, or side effects. For a creation tool this is a meaningful gap.

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 entire description is one lean, front-loaded sentence that conveys the core action, supported formats, and valid targets. There is no redundancy or filler.

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 tool with no annotations, no output schema, and seven parameters, the description is somewhat thin. It covers the essential 'what' and 'where', but omits practical context such as authentication, post visibility, and response behavior, which an agent would benefit from knowing before invoking a mutating Reddit API call.

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 71%, so most parameters are already documented. The description adds minimal extra value by framing 'body' as markdown and 'url' as links, but it does not clarify exclusivity or parameter combinations beyond what the schema already implies.

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 uses a specific verb ('Publish') and resource ('post'), and clearly specifies the allowed destinations ('any subreddit or own profile') and post types ('text/markdown or link'). This unambiguously distinguishes it from sibling tools like reddit_submit_comment.

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 for when to use this tool: whenever a new post needs to be published to a subreddit or personal profile. It does not explicitly name alternatives or exclusions, but the intended use case is obvious from the phrasing and the sibling tool names.

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