Skip to main content
Glama

dero_tela_list_apps

Read-only

Discover TELA apps directly from on-chain data. Filter by name or dURL to explore games, vaults, and other DERO smart contracts, and find each app's SCID.

Instructions

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").

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.6.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • removedInput schema / additionalProperties
      Removed value: -false
  2. Addedv0.4.8

TDQS

A4.7/5.0
Behavior5/5

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

Beyond annotations (readOnlyHint=true, destructiveHint=false), the description discloses important behavioral traits: it is a 'Composite' operation, triggered by an 'in-process scan of the newest chain contracts', and the 'first call triggers a ~10s one-time discovery scan (cached afterward)'. It also explains that index_meta discloses scan coverage, making result limitations transparent.

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 well-structured with clear sections: purpose, when to call, input requirements, and output shape. It front-loads the core answer, includes only necessary detail, and the output code block is compact and informative. 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?

For a tool with no output schema, the description provides a full output shape and key behavioral caveats (first-call latency, caching, index_meta coverage transparency). It also clearly situates the tool relative to siblings, so an agent has everything needed to select and invoke 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%, and both the schema and description document query as an optional case-insensitive filter and limit with default 50/max 200. The description adds usage context and examples but does not materially expand parameter semantics beyond what the schema already provides, so the baseline of 3 applies.

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 opens with a specific verb+resource: 'list/browse the TELA apps discovered on-chain' and explicitly answers the question 'what TELA apps exist?'. It also differentiates itself from siblings by naming dero_durl_to_scid and tela_inspect as the tools for exact dURL or SCID lookup, so an agent can immediately tell this tool apart.

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?

There is an explicit 'When to call' section with concrete user intents ('what TELA apps are there', 'show me TELA games', 'is there a TELA app about X'), and clear exclusions: 'For an exact dURL use dero_durl_to_scid; to inspect a specific SCID use tela_inspect.' This leaves no ambiguity about when to choose this tool over alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.