xrade
Server Details
The XRADE record: what you actually own when you buy a tokenised asset. Read-only.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
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.
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.
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.
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 toolscoverageCInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Ticker (e.g. "NVDA") or company name (e.g. "NVIDIA") |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| chain | Yes | Chain name, e.g. ethereum, solana, arbitrum, bnb, robinhood, base, plume | |
| address | Yes | Token contract address (EVM 0x..., Solana mint, Ton or Tron address) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| wrapper | Yes | Wrapper slug or name fragment, e.g. "dinari", "xstocks", "robinhood" |
TDQS
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.
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.
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.
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.
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.
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.
4 tool updates
- First observed
coverage - First observed
lookup_stock - First observed
lookup_token - First observed
wrapper_record
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Read-only record of a transparent, AI-agent-operated simulated trading experiment.
Read-only tokenized stock data: issuers, chains, contract addresses and corporate actions.
Verified RWA tokenization knowledge — security tokens, regulation, standards — for any AI.
Self-authenticating booking-request receipt anchored to the Knox chain; never represents a person.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceRead-only XRP Ledger analytics — signed snapshots, AMM pools, token volume, whale activity, NFT tracking. Proof-annotated. Public beta 2026-09.MIT
- FlicenseCqualityBmaintenanceThe 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-
- AlicenseNot gradedqualityCmaintenanceEd25519-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
- AlicenseNot gradedqualityCmaintenanceReserve 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