Skip to main content
Glama

diagnose_error

Paste a Celestia ERROR MESSAGE, stack trace, or error code and get the most likely resolved fixes from blobpedia history: forum threads where the same error was discussed, and related GitHub issues (each with its own date). Needs a literal error string or code; do NOT use it for symptom descriptions with no error text (e.g. "my node won't sync"), use semantic_search for those. Celestia-specific. Returns top matches from forum and github.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax matches per source (default 3).
error_textYesError message, stack trace, or status code. Longer/more distinctive text returns better matches.

Schema Changelog

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

  1. Added

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses key behavioral traits: input must be a literal error string or code, it returns top matches from two sources, and GitHub issues include dates. This is solid coverage for a read-only query tool, though it never explicitly states the operation is read-only, and the exact result encoding is left vague.

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 appropriately sized at three sentences, front-loaded with the core action and output. Every sentence contributes useful guidance, including the negation and alternative. The only minor flaw is a slight redundancy where the final sentence ('Returns top matches from forum and github') repeats the sources already stated in the first sentence.

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

Completeness3/5

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

There is no output schema, so the description must explain return values. It does so only at a high level: 'top matches from forum and github' and 'GitHub issues (each with its own date).' It does not describe what fields a match contains, how 'resolved fixes' are formatted, or how the limit parameter affects the combined result. This is adequate for deciding to call the tool, but incomplete for an agent that needs to process the response.

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?

Schema coverage is 100%, giving a baseline of 3. The description adds meaningful semantic nuance beyond the schema for error_text by clarifying that it must be a literal error string/code and by explaining why symptom descriptions are unsuitable, with a concrete counter-example and a pointer to semantic_search. The limit parameter is not mentioned in the description, but the schema already fully documents it.

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 states a specific verb and resource: 'Paste a Celestia ERROR MESSAGE, stack trace, or error code and get the most likely resolved fixes from blobpedia history.' It clearly names the output sources (forum threads and GitHub issues) and differentiates itself from the sibling semantic_search by contrasting its intended input. An agent can tell exactly what this tool does.

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

Usage Guidelines5/5

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

It explicitly says when to use the tool ('Needs a literal error string or code'), when not to use it ('do NOT use it for symptom descriptions with no error text'), provides a concrete counter-example ('my node won't sync'), and names the alternative tool ('use semantic_search for those'). It also scopes the tool to 'Celestia-specific' queries, giving unambiguous context.

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.9/5.0
Disambiguation4/5

Most tools target clearly distinct content types and actions, and descriptions carefully carve out boundaries (e.g. get_network_state vs get_network_stats, get_discussion vs get_github_discussion). However, the overlapping get_/find_/search_ families plus the very similar network_state/network_stats names leave some edge cases where an agent could select the wrong tool.

Naming Consistency4/5

The dominant convention is verb_noun (find_*, get_*, list_*, search_*), and get/list/find roughly map to id-based retrieval, browsing, and discovery. Deviations like learning_path, ecosystem_dependency_graph, and semantic_search break the pattern, and the get_ vs find_ vs search_ boundaries are not perfectly predictable.

Tool Count2/5

43 tools is on the high side for a single MCP server; even though the Celestia knowledge domain is broad, the surface is heavy and will increase selection cost. Most tools are individually useful, but the set would benefit from consolidation, e.g. merging release tools or search variants.

Completeness4/5

The server covers an unusually broad range of content types—CIPs, docs, forum, GitHub issues/discussions, releases, videos, whitepapers, ecosystem, and network state—with list/get/search access for most. Minor gaps remain, such as no dedicated blog retrieval and get_issue_status only returning status rather than full issue body, but core knowledge workflows have no dead ends.

Resources