Skip to main content
Glama

DERO MCP Server

dero_tela_list_apps

Read-only

Composite: list/browse the TELA apps discovered on-chain (each with its dURL, name, SCID, and doc count) — answers "what TELA apps exist?" without any external indexer. Powered by an in-process scan of the newest chain contracts.

When to call: when a user wants to explore or search the TELA ecosystem ("what TELA apps are there", "show me TELA games", "is there a TELA app about X"), or to find a SCID when they do not know the exact dURL. For an exact dURL use dero_durl_to_scid; to inspect a specific SCID use tela_inspect.

Input Requirements:

  • query is OPTIONAL. Case-insensitive filter matched against dURL and name (e.g. "chess", "vault").

  • limit is OPTIONAL (default 50, max 200).

Output: { query, total_matched, returned, truncated, apps:[{ scid, durl, name, install_height, doc_count }], index_meta, narrative, related_docs }. The first call triggers a ~10s one-time discovery scan (cached afterward). index_meta discloses how much of the chain was scanned so the answer's coverage is transparent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax apps to return (default 50, max 200).
queryNoOptional case-insensitive filter matched against dURL and name (e.g. "chess", "vault").

TDQS

A4.8/5.0
Behavior5/5

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

Despite annotations declaring readOnlyHint=true and destructiveHint=false, the description adds significant behavioral context: it discloses the composite nature (in-process scan of newest contracts), the one-time ~10s discovery scan on first call, and that index_meta reveals scan coverage for transparency. This goes beyond what annotations provide, enhancing understanding of performance and data scope.

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 appropriately sized, front-loaded with a clear purpose, and structured into logical sections (What it does, When to call, Input Requirements, Output). Each section is concise and information-dense, with no wasted words or repetition of schema details unnecessarily.

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?

The tool has only 2 parameters (both covered), good annotations, and no output schema. The description compensates well by outlining the output structure, mentioning the index_meta coverage disclosure, and the caching behavior. It doesn't elaborate on return fields' semantics, but that's minimal gap given the simple output.

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% for both parameters, so baseline is 3. The description adds value by explaining the query parameter's matching scope (against dURL and name, case-insensitive) and examples, and confirming the limit's default and max, which reinforces but also slightly exceeds schema details. It doesn't introduce new info but effectively clarifies usage.

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 states the tool's purpose: to list and browse TELA apps discovered on-chain, with specific fields (dURL, name, SCID, doc count). It directly addresses the user question 'what TELA apps exist?' and differentiates from siblings by mentioning 'without any external indexer' and providing explicit alternatives (dero_durl_to_scid, tela_inspect).

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 provides explicit when-to-call scenarios ('when a user wants to explore or search the TELA ecosystem...') and explicitly names alternatives for different needs (exact dURL -> dero_durl_to_scid; inspect specific SCID -> tela_inspect). It also gives input requirements, clarifying that query is optional and for filtering.

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

Each tool has a clearly distinct purpose, with detailed descriptions that specify when to call it and how it differs from similar tools. Composite tools are well-defined, overlapping concerns are minimized.

Naming Consistency4/5

Tool names follow a general pattern: 'dero_' for core daemon RPC wrappers, 'tela_' for TELA-specific composites, and descriptive names for other composites. While mostly consistent, there are exceptions like 'audit_chain_artifact_claim' and 'dero_durl_to_scid' breaking the pattern slightly.

Tool Count4/5

With 32 tools, the server is comprehensive but slightly heavy. However, each tool serves a specific need in the DERO ecosystem, covering chain queries, docs, TELA, and composite analyses. The count is justifiable given the domain breadth.

Completeness4/5

The tool set covers core chain operations, documentation, TELA app lifecycle, and common analytical tasks. Minor gaps exist, such as lack of wallet interaction tools or transaction submission, but these are outside the apparent read-only/analysis scope.