Skip to main content
Glama

xrade

Server Details

The XRADE record: what you actually own when you buy a tokenised asset. Read-only.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

B3.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: coverage gives a high-level status of unresolved tokens, lookup_stock searches by asset name, lookup_token searches by chain/contract, and wrapper_record provides detailed legal records. No two tools are likely to be confused.

Naming Consistency4/5

Three tools follow a clear lookup_* pattern, while coverage and wrapper_record are descriptive nouns. The conventions are mostly consistent and readable, though not perfectly uniform.

Tool Count5/5

Four tools are well-scoped for a focused read-only query service covering overview, stock lookup, token lookup, and record details. Each tool earns its place without redundancy.

Completeness4/5

The tool surface covers the core domain of querying covered assets and legal wrappers, including explicit handling of uncovered tokens. A generic browse-all-wrappers operation is absent, but the provided lookup pathways are sufficient for typical use.

Available Tools

4 tools
coverageCInspect

What the record covers and, as importantly, what it knows it has not covered: the denominator of tokens seen on chain and not yet resolved to any wrapper.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

C2/5.0
Behavior1/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, but it only gives a conceptual explanation. It does not state whether the tool is read-only, what side effects exist, what output to expect, or any operational constraints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief and not verbose, but it lacks a clear action-oriented structure. The single sentence is dense with conceptual nuance yet fails to front-load what the tool actually does.

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

Completeness2/5

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

For a zero-parameter tool, the description should clarify what invoking it returns or how it behaves. Instead, it only provides an abstract definition of 'coverage', which is insufficient for an agent to confidently select and call the tool.

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?

The tool has zero parameters, so the description need not explain parameter meaning. The baseline of 4 applies here because there is no parameter semantics burden at all.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description defines the concept of 'coverage' as what the record covers and what it has not covered, but it never states an action the tool performs (e.g., 'retrieves', 'returns', 'calculates'). It is semantically informative but does not clearly distinguish the tool from siblings like lookup_token or wrapper_record.

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

Usage Guidelines1/5

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

There is no guidance about when to use this tool versus the sibling tools. No conditions, alternatives, or exclusions are mentioned, leaving the agent to infer usage from the name alone.

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

lookup_stockAInspect

Look up a stock or asset by ticker or name. Returns every tokenised version the record holds, grouped by legal wrapper, plus tokens seen on chain that are not yet resolved. Versions are unranked and listed alphabetically.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesTicker (e.g. "NVDA") or company name (e.g. "NVIDIA")

TDQS

A4.2/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 several behavioral traits: results are grouped by legal wrapper, unranked, listed alphabetically, and include unresolved on-chain tokens. This goes beyond a simple 'look up' statement and gives the agent useful expectations about output structure.

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?

Three dense sentences, each earning its place. The purpose is front-loaded, and the output behavior is summarized without extraneous wording. It is structured logically from invocation to result details.

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 single-parameter lookup tool with no output schema, the description covers both input and output well: search method, grouping, ordering, and inclusion of unresolved tokens. Some domain terms like 'legal wrapper' are not expanded, but the overall description is sufficient for correct invocation and interpretation.

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?

The input schema already fully documents the query parameter with examples, and schema coverage is 100%. The description only repeats that lookups can be by ticker or name, adding no new semantic detail beyond the schema. Baseline 3 is appropriate.

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 clear verb and resource: 'Look up a stock or asset by ticker or name.' It then explains the output specifics (tokenised versions, grouping by legal wrapper, unresolved on-chain tokens), which sets it apart from sibling tools like lookup_token by focusing on stocks/assets and their token representations.

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

Usage Guidelines4/5

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

The description clearly states when to use the tool: when you need to look up a stock or asset by ticker or name. It does not explicitly mention alternatives or exclusions, but the usage context is unambiguous and self-contained.

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

lookup_tokenAInspect

The pre-trade check. Look up a token by chain and contract address: which legal wrapper issued it, what holding it entitles you to, with the supporting quotes. A token XRADE has not covered gets an explicit 'not covered' answer, never a blank.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainYesChain name, e.g. ethereum, solana, arbitrum, bnb, robinhood, base, plume
addressYesToken contract address (EVM 0x..., Solana mint, Ton or Tron address)

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It explicitly states that an uncovered token gets a definitive 'not covered' answer rather than a blank, and it describes what the lookup returns. It does not cover error cases or permissions, but those are less critical for a read-only lookup tool.

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?

Two tightly packed sentences with no filler. The first sentence establishes purpose and timing, the second details the output and the key edge case. Every phrase earns its place.

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?

Given the absence of an output schema, the description does a good job of conveying what the tool returns and how it behaves for unsupported tokens. Combined with the schema's full parameter documentation, this is sufficient for a two-parameter lookup 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 description coverage is 100%, so the schema already explains chain and address formats sufficiently. The description only restates the parameter roles ('by chain and contract address') without adding new semantic detail beyond the schema.

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 names a specific verb ('look up'), a specific resource ('token by chain and contract address'), and the output substance ('legal wrapper', entitlements, quotes). It also differentiates itself from siblings by focusing on tokens and pre-trade coverage, rather than stocks or wrapper records.

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

Usage Guidelines4/5

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

The opening phrase 'The pre-trade check' gives clear context for when this tool should be used. It does not explicitly name sibling alternatives or state when not to use it, so it stops just short of fully explicit routing.

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

wrapper_recordAInspect

The full legal record of one wrapper: structure, holder claim, insolvency ranking, redemption, dividends, voting, transfer restrictions. Every stated fact carries its supporting quote, source and dates. Fields nobody examined and fields no document discloses are distinguished and say so.

ParametersJSON Schema
NameRequiredDescriptionDefault
wrapperYesWrapper slug or name fragment, e.g. "dinari", "xstocks", "robinhood"

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral disclosure burden. It adds valuable transparency by stating that every fact includes supporting quotes, sources, and dates, and that unexamined fields are distinguished from fields no document discloses. It does not cover response format, error behavior, or access requirements, but for a read-oriented record tool these omissions are not critical.

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 compact and front-loaded with the core purpose, followed by a second sentence that adds substantive data-provenance detail. No unnecessary repetition exists, though the phrasing "Fields nobody examined and fields no document discloses are distinguished and say so" is slightly awkward but still informative.

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 single-parameter tool with no output schema, the description covers the tool's scope, the legal topics included, and important data-quality caveats. It is sufficiently complete for an agent to understand what the tool does and what to expect. A small gap is the lack of explicit output-format or empty-result behavior, but the content list largely compensates.

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?

The input schema already documents the single parameter well, including the "Wrapper slug or name fragment" description and an example. Schema description coverage is 100%, so the description does not need to add parameter-level meaning. It reinforces the "one wrapper" scope, which is consistent with the schema.

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 clearly states that the tool provides "the full legal record of one wrapper" and enumerates the legal topics covered, such as structure, holder claim, insolvency ranking, and transfer restrictions. The verb is implicit rather than explicit, but the resource and scope are specific. It does not explicitly distinguish itself from siblings like lookup_stock or lookup_token, though the "one wrapper" framing narrows its purpose.

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

Usage Guidelines3/5

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

Usage is implied: use this when you need the complete legal record and supporting evidence for a single wrapper. The description does not explicitly say when to choose this tool over coverage, lookup_stock, or lookup_token, nor does it mention exclusions or prerequisites. This is adequate but leaves selection guidance to the agent.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updates
    • First observedcoverage
    • First observedlookup_stock
    • First observedlookup_token
    • First observedwrapper_record

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • F
    license
    C
    quality
    B
    maintenance
    The trust-and-settlement rails of the agent economy: identity, trust, escrow, metering, arbitration, compute-carbon ledger, covenant, provenance, offsets, ERC-8004 bridge, surety, notary, and discovery — plus sellable measurement/CAD services. Durable, machine-checkable invariants, free rails.
    100
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Ed25519-signed market-state receipts (OPEN, CLOSED, HALTED, UNKNOWN) for 28 exchanges, fail-closed, 60-second TTL, verifiable by anyone against the published key registry at headlessoracle.com/.well-known/oracle-keys.json. Free tier of 500 calls a day, pay per call over x402 v2 on Base (0.001 USDC), or a builder key. MCP tools and a REST API.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Reserve Asset Intelligence MCP — live gold/silver prices as ES256K-signed evidence payloads, 80+ RWA token profiles (PAXG, XAUT, BlackRock BUIDL) with issuer LEI, custody, MiCA Art.36 context, and real cryptographic signatures.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources