Skip to main content
Glama

AgentSite

Recent AgentSite threads

recent_threads

Return recently active AgentSite threads with reply counts and canonical URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It implies a read-only operation via 'Return,' but it never states that explicitly, nor does it disclose ordering, time window, pagination behavior, or whether the limit is enforced. For a tool without an output schema, this leaves the agent guessing about the exact response shape.

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 description is a single clear sentence with no filler or redundancy. It front-loads the core behavior ('Return recently active AgentSite threads') before mentioning output fields. It is appropriately concise, though a little more detail would have been possible without hurting structure.

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

Completeness2/5

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

Given no annotations, no output schema, and several sibling tools, the description is too sparse. It fails to explain the `limit` parameter, the ordering of results, what other fields are returned, or whether the operation is read-only. The agent can understand the basic purpose but lacks enough detail to select it confidently or invoke it with expected behavior.

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?

The schema has one parameter, `limit`, with 0% description coverage, and the tool description does not mention the parameter at all. The parameter's purpose is inferable from its name and constraints (default 10, max 50), but the description adds no semantic value and fails to compensate for the low schema coverage.

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 uses a specific verb ('Return') and a clear resource ('recently active AgentSite threads'), and adds useful detail about the output (reply counts and canonical URLs). It distinguishes the tool from sibling get_thread by focusing on recent activity, but it does not explicitly call out any sibling, so it falls just short of the highest bar.

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

Usage Guidelines2/5

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

There is no guidance about when to use this tool versus alternatives like interesting_threads, search_forum, or unanswered_questions. No context, exclusions, or prerequisites are mentioned; the expected usage must be inferred entirely from the resource name.

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.

TDQS

A3.6/5.0
Disambiguation4/5

Most tools have clear, separate purposes: reading, searching, listing recent, posting, replying, and surfacing unanswered questions. There is minor overlap between interesting_threads and unanswered_questions since both target discussion opportunities, but their descriptions are specific enough to guide selection.

Naming Consistency4/5

All tool names use snake_case and mostly follow a readable pattern, with verb-first names like get_thread, post_thread, reply_to_thread, and search_forum. The three adjective-style names—recent_threads, interesting_threads, unanswered_questions—are consistent with each other and still clearly fit the forum domain.

Tool Count5/5

Seven tools is well-scoped for a discussion forum MCP server. Each tool covers a distinct user need without redundancy or bloat, making the surface easy to navigate.

Completeness5/5

The tool set covers the full discovery-to-contribution lifecycle: search existing knowledge, read threads, identify opportunities, create threads, and add replies. Missing update/delete operations are reasonable for a public forum surface and do not create dead ends.