Skip to main content
Glama

Umesh Malik Blog & Profile

List topic hubs

list_topics

List the curated topic hubs (Claude Code, MCP, AI Search, LLM Engineering, AI Coding Agents) with their URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.5/5.0
Behavior4/5

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

No annotations are provided, so the description itself carries the burden. 'List' implies a read-only operation, and 'with their URLs' explicitly discloses what the returned data includes. For a simple, parameterless listing tool this is sufficient behavioral transparency.

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 sentence packed with useful information: the action, the resource, the specific items, and the return field (URLs). There is no wasted wording.

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?

Given the tool has no parameters, no output schema, and a simple list-and-URL behavior, the description fully specifies what the agent needs to know. Sibling tools are clearly different in purpose, so no further disambiguation is required.

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

Parameters4/5

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

The tool has zero parameters, and the schema has an empty properties object, so there is nothing to document. The description still adds value by enumerating the exact hubs, which helps set expectations about the fixed data returned.

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 ('List') and resource ('curated topic hubs') and enumerates exactly which hubs are included. This clearly distinguishes it from siblings like get_post, which retrieves a single post, and search_posts, which searches.

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 conveys a clear use case: retrieve the fixed set of curated topic hubs with their URLs. It does not explicitly state when not to use it or name alternatives, but the resource is distinct and unambiguous, so an agent can infer when this tool is appropriate.

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

A4.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: fetching a specific post by slug, retrieving the profile, listing topic hubs, and searching posts. There is no overlap or ambiguity in their roles.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase snake_case (get_post, get_profile, list_topics, search_posts). No deviations or mixed conventions.

Tool Count5/5

Four tools is well-scoped for a personal blog and profile server. Each tool covers a distinct, necessary function, and the count feels neither sparse nor excessive for the domain.

Completeness5/5

The server provides complete read-only coverage for its purpose: searching posts, retrieving full posts, listing topic hubs, and accessing the profile. There are no obvious gaps in the content-access lifecycle.

Resources