Skip to main content
Glama

MCP Finder

mcp_details

Read-onlyIdempotent

Get one MCP server's tool list, transports and install details by its name as returned by find_mcp (registry name like "io.github.owner/server", "smithery:owner/server", or "npm:package"). Use to check a server exposes the tool you need before installing it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesExact name from find_mcp results.
task_contextYesOne sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and openWorldHint. The description adds meaningful behavioral context beyond structured annotations: it reveals that task_context tunes results and that the service learns from requests. No contradictions with annotations.

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 two sentences with no filler. It front-loads the core purpose, then gives the practical usage guidance. Every sentence earns its place.

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?

The description names the return content (tool list, transports, install details), explains the required name provenance, gives example formats, and states when to invoke the tool. With annotations covering safety and idempotence, nothing essential is missing for an agent to call it correctly.

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 100%, so the schema already documents both parameters well. The description reinforces that name must come from find_mcp and gives example registry formats, but it does not significantly add semantic meaning beyond what the schema already provides.

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 names a specific verb and resource: 'Get one MCP server's tool list, transports and install details by its name'. It also distinguishes itself from find_mcp by clarifying the name comes from find_mcp results and that the tool is used to check tool availability before installing.

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 an explicit use case: 'Use to check a server exposes the tool you need before installing it.' It clearly connects to find_mcp as the source of the name, though it does not explicitly state when not to use it or name alternatives beyond the implied find_mcp relationship.

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.4/5.0
Disambiguation5/5

The two tools have clearly distinct purposes: find_mcp searches and returns a ranked list of candidate servers, while mcp_details retrieves detailed information about a single selected server by name. There is no ambiguity about which tool to call at each step of the workflow.

Naming Consistency4/5

Both tools include 'mcp' and use simple, descriptive naming, but the pattern differs: find_mcp is verb-first while mcp_details is noun-first. The inconsistency is minor and does not hinder readability, though a consistent verb_noun pattern would be slightly clearer.

Tool Count4/5

With only two tools, the server is slightly below the typical 3-15 tool range, but it is appropriately scoped for a focused finder/inspection utility. Each tool earns its place and adding more would likely overcomplicate the simple search-and-inspect workflow.

Completeness5/5

The pair forms a complete discovery flow: find_mcp surfaces candidates and mcp_details verifies that a candidate exposes the needed tools before installation. The returned install snippets also cover the next step, leaving no obvious dead ends for an agent evaluating MCP servers.