Skip to main content
Glama

Lookup

lookup
Read-onlyIdempotent

Exact-name lookup against the catalog (case-insensitive).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYese.g. "package.json"

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesSearched schema name (case-insensitive)
resultYes

Schema Changelog

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

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "name": "package.json"
      +  },
      +  {
      +    "name": "tsconfig"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "name": {
      +      "description": "Searched schema name (case-insensitive)",
      +      "type": "string"
      +    },
      +    "result": {
      +      "oneOf": [
      +        {
      +          "description": "No match found",
      +          "type": "null"
      +        },
      +        {
      +          "properties": {
      +            "description": {
      +              "description": "Schema description",
      +              "type": "string"
      +            },
      +            "fileMatch": {
      +              "description": "Glob patterns matching filenames",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "name": {
      +              "description": "Schema name",
      +              "type": "string"
      +            },
      +            "url": {
      +              "description": "Schema URL",
      +              "type": "string"
      +            },
      +            "versions": {
      +              "additionalProperties": {
      +                "type": "string"
      +              },
      +              "description": "Schema versions mapping",
      +              "type": "object"
      +            }
      +          },
      +          "required": [
      +            "name",
      +            "url"
      +          ],
      +          "type": "object"
      +        }
      +      ]
      +    }
      +  },
      +  "required": [
      +    "name",
      +    "result"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already cover safety (readOnlyHint, idempotentHint, destructiveHint). The description adds valuable behavioral detail: 'exact-name' and 'case-insensitive', which go beyond annotations. However, it does not mention what happens if the name is not found or any limits, but this is partially mitigated by the output schema.

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, front-loaded sentence with no extraneous content. Every word adds value, making it highly concise and structurally effective.

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?

For a simple one-parameter tool with rich annotations and an output schema, the description covers the essential behavior. It could clarify what 'the catalog' contains (e.g., schemas, entities) but is still largely sufficient for an agent.

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 coverage is 100%, with the 'name' parameter described via an example. The description adds no new parameter details, but given high coverage, the baseline of 3 is appropriate.

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 states 'Exact-name lookup against the catalog (case-insensitive),' clearly identifying the action and resource with specificity. However, it does not explicitly differentiate from sibling tools like 'find_schema_for' or 'search_within', which could reduce clarity in selection.

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?

The description provides no guidance on when to use this tool versus alternatives such as 'search_within' or 'find_schema_for'. It implicitly suggests using it when the exact name is known, but lacks explicit when-not-to-use instructions or recommended alternatives.

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.8/5.0
Disambiguation3/5

Several tools occupy overlapping semantic space: ask_pipeworx, ask_pipeworx_beta (currently identical), and ask_pipeworx_grounded are the same router in different modes, while suggest_questions and discover_tools both serve capability discovery. The detailed descriptions help, but an agent could easily select the wrong entry point, especially among the prediction-market and router variants.

Naming Consistency4/5

All tool names use lowercase snake_case and mostly follow a verb_noun pattern (fetch_schema, resolve_entity, validate_claim), with some domain-prefixed nouns (polymarket_edges, pipeworx_trending) and a few adjective_noun outliers (recent_alerts, recent_changes). The convention is consistent and predictable, with only minor deviations.

Tool Count2/5

At 35 tools, the set is far too large for a server named Schemastore — only four tools relate to the schema catalog while the rest form a sprawling data-research, prediction-market, memory, and subscription platform. The count is heavy and the scope feels unfocused.

Completeness3/5

The broad data-research and prediction-market domain is well covered — lookup, compare, validate, research, arbitrage, subscriptions, and memory all have lifecycle support — but the server's namesake purpose (schema catalog) is thinly served by four read-only tools with no way to contribute or manage schemas. The domain mismatch makes the surface feel both over- and under-complete.