Skip to main content
Glama

Trace

List supported payment systems

list_supported_systems
Read-onlyIdempotent

List what Trace supports and can do: assets (USDC), chains with public tracing (Base, Solana), providers requiring connected credentials (Bridge, Circle), and explicit capability flags (read-only; cannot send, retry, or sign). Call this when unsure whether a payment is in scope for trace_payment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so the safety profile is covered. The description adds useful behavioral context by disclosing explicit capability flags (read-only; cannot send, retry, or sign) and clarifying that providers require connected credentials, which goes beyond the structured fields.

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 a single dense sentence that front-loads the purpose and then packs the output categories into a parenthetical list, followed by a helpful use cue. It is efficient, though the long first sentence is somewhat overloaded with details.

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?

Given no parameters, an output schema, or nested objects, the description is complete: it enumerates the categories of information the tool provides (assets, chains, providers, capability flags) and gives a clear decision rule for when to invoke it. An agent has enough context to call and interpret the result without additional documentation.

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 and the schema coverage is trivially 100%, so there is no parameter meaning for the description to add. With no parameters, a baseline of 4 is appropriate, and the description instead invests its space in explaining the result content.

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 action ('List'), the resource ('what Trace supports and can do'), and enumerates concrete categories: assets, chains, providers, and capability flags. It also implicitly distinguishes itself from trace_payment by framing itself as the scope-checking entry point, so an agent can tell it apart from siblings.

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 explicitly says to call this tool 'when unsure whether a payment is in scope for trace_payment,' which is a clear usage trigger and names a sibling alternative. However, it does not give an explicit when-not-to-use statement or contrast with get_trace, so it stops just short of full alternative routing.

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.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: list_supported_systems handles capability discovery, trace_payment traces external payment identifiers, and get_trace retrieves a previously created trace by trace_id. The overlapping return shape is explicitly documented rather than left ambiguous.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern: list_supported_systems, get_trace, and trace_payment. The naming is predictable and reflects each tool's action clearly.

Tool Count5/5

Three tools is well-scoped for a focused payment-tracing server. Each tool earns its place: capability discovery, external-ID tracing, and retrieval by internal trace ID.

Completeness5/5

The read-only tracing lifecycle is fully covered: discover supported systems, trace a payment from external identifiers, and retrieve an existing trace by trace_id. No obvious gaps exist for the stated purpose.

Resources