Skip to main content
Glama

semantic_search

Semantic (meaning-based) search over the Celestia knowledge base (CIPs, Celestia/rollup/node docs, forum, whitepapers, blog, releases, ecosystem, YouTube transcripts, celestiaorg GitHub issues/PRs). Celestia-specific — do NOT use for other blockchains (use the Ethereum or other-chain docs tool), the general web (use the web-search tool), other knowledge bases (use the dedicated RAG tool), or local files. Use this for conceptual how-does-X-work questions; use search for exact-term or name lookups, and get_doc to read a full page once you have its id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYesFree-form question or phrase.
source_typesNoRestrict to these source types. Omit for all.

Schema Changelog

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

  1. Changed1 schema field changed
    • changedInput schema / properties / source_types / items / enum
      Previous value: -[
      -  "cip",
      -  "doc_page",
      -  "forum_topic",
      -  "github_item",
      -  "whitepaper",
      -  "blog_post",
      -  "github_release",
      -  "github_discussion",
      -  "ecosystem_project",
      -  "foundation_kb",
      -  "youtube_video"
      -]New value: +[
      +  "cip",
      +  "doc_page",
      +  "forum_topic",
      +  "github_item",
      +  "whitepaper",
      +  "blog_post",
      +  "github_release",
      +  "github_discussion",
      +  "ecosystem_project",
      +  "foundation_kb",
      +  "youtube_video",
      +  "radar_item"
      +]
  2. Changed1 schema field changed
    • changedInput schema / properties / source_types / items / enum
      Previous value: -[
      -  "cip",
      -  "doc_page",
      -  "forum_topic",
      -  "proposal",
      -  "whitepaper",
      -  "blog_post",
      -  "github_release",
      -  "github_discussion",
      -  "ecosystem_project",
      -  "foundation_kb",
      -  "youtube_video"
      -]New value: +[
      +  "cip",
      +  "doc_page",
      +  "forum_topic",
      +  "github_item",
      +  "whitepaper",
      +  "blog_post",
      +  "github_release",
      +  "github_discussion",
      +  "ecosystem_project",
      +  "foundation_kb",
      +  "youtube_video"
      +]
  3. First observed

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the semantic nature of the search, the Celestia-specific scope, and implicit non-return expectations by pointing to get_doc for full pages. It could go further by describing result shape, ranking, or absence of side effects, but the behavioral characterization is strong for a search tool.

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 dense and front-loaded with the core semantics and resource scope, then efficiently covers exclusions and alternatives. It is long, but nearly every clause adds routing or scoping value. It could be slightly better structured into separate sentences, but it avoids redundancy.

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?

The description thoroughly covers scope, use case, and alternatives, which is critical given the long sibling list. However, with no output schema, it does not explicitly describe the result format, even though it implies results contain ids via the get_doc reference. It also does not explain limit behavior or how source_types filtering affects results, leaving some practical gaps for an agent invoking the tool.

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 67%, so the description bears some responsibility for parameter meaning. It adds useful context to the query parameter by framing it as conceptual how-does-X-work phrasing, but it does not elaborate on 'limit' or 'source_types' beyond what the schema already states. This is adequate but not exceptional.

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 clearly identifies a semantic search tool over the Celestia knowledge base, enumerating the document types it covers. It explicitly distinguishes itself from sibling tools by stating that exact-term/name lookups should use 'search' and full-page reads should use 'get_doc', which fully disambiguates it from the many search/get siblings.

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?

The description gives explicit when-to-use guidance: conceptual how-does-X-work questions. It also provides strong negative guidance, listing concrete alternatives for other blockchains, general web, other knowledge bases, and local files, and names the sibling tools that should be used instead. This is exemplary routing behavior.

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