Get Agent Details
get_agentFull detail for one agent by slug: skills, auth, streaming/push support, tags, provider links.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Agent slug, e.g. "playwright-mcp" |
get_agentFull detail for one agent by slug: skills, auth, streaming/push support, tags, provider links.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Agent slug, e.g. "playwright-mcp" |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. States it returns 'full detail' and lists fields, but does not disclose potential errors, rate limits, or guarantee of completeness. Adequate for a simple get but lacks specificity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence front-loads the action and lists key details. No wasted words, highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple retrieval tool with one required parameter and no output schema, the description covers the input and output fields reasonably well. Could mention the return format but is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter (slug) with schema description and an example. The description reinforces 'by slug'. With 100% schema coverage and no enums or nested objects, the description adds clear context without redundancy.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool retrieves full details for a specific agent by slug, and enumerates the included information (skills, auth, streaming/push support, tags, provider links). The purpose is distinct from sibling tools list_categories and search_agents.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies use when needing full details for a known agent, and the slug parameter is explicitly required. No explicit when-not-to-use or alternatives, but the sibling context makes the differentiation clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool has a distinct purpose: getting a single agent by slug, listing categories with counts, and searching the directory. There is no overlap in functionality.
All tools follow a consistent verb_noun pattern (get_agent, list_categories, search_agents) using snake_case, making them predictable.
With 3 tools, the server is well-scoped for a directory browsing purpose. Each tool provides essential functionality without redundancy.
The read-only surface covers the main use cases: searching, getting details, and discovering categories. Missing a 'list all agents' tool is a minor gap, but search_agents flexible enough to compensate.