Skip to main content
Glama

Contribution Exchange

Exchange List Signals — Domain-Published Work Signals

exchange_list_signals
Read-onlyIdempotent

List domain-published Exchange Signals (problems, requests, challenges, bounties, verification tasks, discoveries, experiments). Read-only. Returns canonical URLs, signal revision, revision hash, and status. Signal status is DISTINCT from exchange status — a signal does not create a Commitment or authorize execution. Supports the same filters and pagination as the HTTP API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNoFilter by signal type.
labelNoFilter by label.
limitNoMaximum signals to return (1-100, default 50).
cursorNoPagination cursor from a previous response.
domainNoFilter by publisher domain.
statusNoFilter by signal status.
expires_beforeNoISO 8601 timestamp — only signals expiring before this.
published_afterNoISO 8601 timestamp — only signals published after this.
verification_modeNoFilter by verification mode.
accepting_attemptsNoOnly return signals currently accepting attempts.
consideration_modeNoFilter by consideration mode.

TDQS

A4.2/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description adds crucial behavioral context: it explicitly warns that signal status is distinct from exchange status and that a signal does not create a Commitment or authorize execution. It also discloses the key returned attributes (canonical URLs, revision, revision hash, status), which is valuable since there is no output schema.

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 concise, front-loaded with the action, and every sentence earns its place: scope, safety, return contents, and the important status-semantics caveat. No filler or redundant restatement of the schema is present.

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 list tool with 11 parameters and no output schema, the description covers the essential scope, return keys, and a critical semantic warning about signal vs exchange status. It relies somewhat on the HTTP API reference for exact filter behavior, but the schema already documents all parameters, so an agent has enough context to call the tool 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%, so the parameters are already fully documented in the input schema. The description adds only a general statement that the same filters and pagination as the HTTP API are supported, which does not deepen the meaning of any specific parameter 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 uses a specific verb ('List'), identifies the exact resource ('domain-published Exchange Signals'), and enumerates the signal types. It clearly differentiates this listing operation from the sibling get/discover/preflight tools, especially because it emphasizes the list scope and the returned fields.

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?

The description implies the tool is for listing signals and notes that it supports filters and pagination, but it does not explicitly contrast alternatives such as exchange_get_signal for a single signal. The usage context is present but no when-not-to-use or sibling routing guidance is provided.

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

Each tool targets a distinct concept: domain discovery, policy lookup, signal listing/detail, attempt detail, and preflight evaluation. There is no meaningful overlap or ambiguity between any two tools.

Naming Consistency4/5

All tool names share the exchange_ prefix and mostly follow a predictable verb_noun pattern such as discover_domain, get_policy, and list_signals. The one minor deviation is exchange_preflight, which lacks an explicit object but remains clear.

Tool Count5/5

Six tools is well-scoped for a focused read-only discovery and preflight server. Each tool earns its place and none feel redundant.

Completeness2/5

The read-only surface is fairly thorough for discovery, policy, signals, attempts, and preflight, but there is no tool to actually submit a proposal, create a commitment, or authorise an exchange. The descriptions repeatedly reference a real proposal flow that is not exposed, leaving agents unable to complete the core contribution workflow.