Skip to main content
Glama

Get recent KimchiSushi posts

get_recent_posts
Read-onlyIdempotent

Return recent or popular public KimchiSushi community posts without a keyword search.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNo
limitNo
categoryNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteYes
postsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • removedInput schema / properties / category / description
      Removed value: -"Optional category filter."
    • removedInput schema / properties / limit / description
      Removed value: -"1-20, default 10."
    • removedInput schema / properties / sort / description
      Removed value: -"recent (default) or hot (by likes)."
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "note": {
      +      "type": "string"
      +    },
      +    "posts": {
      +      "items": {
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "posts",
      +    "note"
      +  ],
      +  "type": "object"
      +}
  3. First observed

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds that posts are 'public' and that no keyword search is involved, but it does not disclose additional behavioral details like pagination or how sorting works beyond the schema enum. With strong annotations, this is acceptable but not highly informative.

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 a single, clear sentence that immediately states the tool's purpose and scope. It is concise, front-loaded, and has no wasted words.

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?

Given that the output schema exists and annotations cover safety, the description is largely complete for a simple read-only listing tool. It conveys the core purpose and scope, though parameter usage is left to inference from enums. The lack of explicit parameter documentation is a minor gap, but overall the tool is well-contextualized.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explain the 'limit' or 'category' parameters. The phrase 'recent or popular' only loosely relates to the 'sort' enum, but does not map 'popular' to the actual enum value 'hot'. The description fails to compensate for the lack of schema descriptions.

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 'Return' and clearly specifies the resource: 'recent or popular public KimchiSushi community posts'. It also explicitly excludes keyword search, distinguishing this tool from the sibling 'search' tool. This is a clear, well-scoped purpose.

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 phrase 'without a keyword search' provides a clear exclusion, indicating this tool is for browsing recent/popular public posts rather than performing keyword-based searches. It doesn't explicitly name the alternative 'search' tool, but the context is clear enough to guide when to use this tool.

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.

Resources