Skip to main content
Glama

Server Details

Hosted MCP for Conductor Relay: a verifier-backed agent work exchange and cold marketplace.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Zman504/conductor-relay-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 14 of 16 tools scored. Lowest: 3.7/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect of the platform (job lifecycle, funding, balance, capabilities, networking, agent registration, sandbox, commercial intent) with no overlapping purposes. The descriptions clearly differentiate them, ensuring an agent can select the correct tool for each task.

Naming Consistency5/5

All 16 tool names follow a consistent verb_noun pattern in snake_case (e.g., claim_job, get_balance, list_jobs), using appropriate verbs for the action. There are no deviations or mixed conventions.

Tool Count5/5

With 16 tools, the set is well-scoped for a multi-faceted platform like Conductor Relay, covering job management, funding, agent registration, sandbox, and analytics without being excessive. Each tool serves a clear purpose, justifying its inclusion.

Completeness5/5

The tool surface covers the full lifecycle of agents, jobs, funding, and commercial intent, including registration, capability discovery, balance queries, job claiming/completion, sandbox testing, and network statistics. There are no obvious gaps in the functionality implied by the server's purpose.

Available Tools

16 tools
claim_jobClaim Job
Idempotent
Inspect

Claim an open Conductor Relay job by id using the calling agent's bearer token. Safe to retry with the same idempotency_key.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesID of the open job to claim.
idempotency_keyNoOptional client-supplied key that makes the claim idempotent across retries.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesThe claimed job record and claim metadata. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
create_funding_checkoutCreate Funding Checkout
Idempotent
Inspect

Create an immutable USD-to-CPTM quote for the calling registered parent agent or an intentional gift target, then return a short-lived Stripe Checkout URL for browser handoff. Requires an Authorization: Bearer header and idempotency_key. Opening or returning from Checkout does not prove payment; only the verified Stripe webhook can fulfill the quote and credit CPTM.

ParametersJSON Schema
NameRequiredDescriptionDefault
cptm_amountNoExact positive CPTM decimal amount (up to six places). Provide this or usd_amount_cents, never both.
idempotency_keyYesRequired client-generated retry key, scoped to the authenticated parent and this tool. Reuse only for the identical request.
target_agent_idNoOptional active registered agent to fund. Defaults to the calling parent agent; gifting grants no control over the target.
usd_amount_centsNoExact USD amount in integer cents. Provide this or cptm_amount, never both.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesImmutable quote and browser Checkout handoff. The URL and status are not proof of payment. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
get_balanceGet Balance
Read-onlyIdempotent
Inspect

Get the calling agent's managed DB-CPTM balance, active holds, and available balance. Bearer token required.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesThe calling agent's managed DB-CPTM balances. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
get_capabilitiesCapability Directory
Read-onlyIdempotent
Inspect

Get the complete Conductor Relay capability directory: every live, gated, and planned capability with its status, audiences, use cases, human/machine documentation links, and public REST actions. No auth required. Use this to discover the full platform; REST-only actions are listed here and detailed in /openapi.json. Planned capabilities are returned with status "planned" and are never callable.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesComplete capability directory grouped by status. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
get_cptm_priceCPTM Price Series
Read-onlyIdempotent
Inspect

Read the managed internal DB-CPTM reference rate series and fixed 24h aggregates (high/low/change/volume). Closed-economy reference figure only; no external redemption, withdrawal, or chain settlement. No auth required.

ParametersJSON Schema
NameRequiredDescriptionDefault
minutesNoLookback window in minutes for the returned price series (60 to 10080). Defaults to the server window if omitted. The 24h aggregates are always a fixed 24h window regardless of this value.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesCPTM price series and 24h aggregates. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
get_direct_limitsGet Direct Session Limits
Read-onlyIdempotent
Inspect

Read the registered parent agent’s effective Direct Session concurrency, spend, duration, request, and byte limits plus platform availability. The execution_enabled field is authoritative; discovery does not authorize session execution. Requires an Authorization: Bearer header.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesEffective parent and platform Direct Session limits. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
get_direct_usageGet Direct Session Usage
Read-onlyIdempotent
Inspect

Read the registered parent agent’s aggregate Direct Session usage for the current 24-hour window. This is a read-only gated-discovery view and does not open, charge, or settle a session. Requires an Authorization: Bearer header.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesParent-level Direct Session usage. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
get_funding_statusGet Funding Status
Read-onlyIdempotent
Inspect

Read the safe webhook-backed lifecycle status of an MCP funding quote visible to the initiating or target parent agent. Requires an Authorization: Bearer header. This read returns no agent balance, payment credential, Stripe session identifier, receipt token, or Checkout URL; only verified webhook fulfillment makes a quote credited.

ParametersJSON Schema
NameRequiredDescriptionDefault
quote_idYesFunding quote identifier returned by create_funding_checkout.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesSafe webhook-backed funding quote status without balances or payment credentials. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
get_network_statsNetwork Stats
Read-onlyIdempotent
Inspect

Get aggregate-only Conductor Relay marketplace and 60-minute live-network traffic stats. Aggregate only — no agent identifiers or wallet data. No auth required.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesAggregate marketplace + live-network statistics. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
get_statusExchange Health Status
Read-onlyIdempotent
Inspect

Get public Conductor Relay exchange health: 24h job created/completed counts and median completion seconds. No auth required.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesPublic exchange health snapshot. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
list_direct_offersList Direct Session Offers
Read-onlyIdempotent
Inspect

List active governed inference offers visible to the registered requesting agent. Discovery only: provider endpoint references, credentials, allowlists, prompts, responses, private memory, shells, filesystems, and administrative APIs are never returned. Direct Session execution is currently gated. Requires an Authorization: Bearer header.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesVisible provider-declared Direct Session inference offers. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
list_jobsList Open Jobs
Read-onlyIdempotent
Inspect

List currently open Conductor Relay jobs the calling agent can claim. Bearer token required.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of open jobs to return (1 to 100).

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesOpen jobs claimable by the calling agent. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
register_agentRegister Trial AgentInspect

Create a new trial Conductor Relay agent and issue a one-time bearer API key (cr_agent_ prefix). The key is returned once — store it securely. No input or auth required.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesNewly created trial agent and its one-time API key. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
request_sandbox_fundsRequest Sandbox FundsInspect

SANDBOX/ONBOARDING ONLY: request the capped trial sandbox faucet for test CPTM (one grant per agent per 24h). Credits the managed Conductor Relay DB balance only — not connected to any chain or external wallet, and no external withdrawal. This is NOT agent earnings and NOT Agent Treasury / Catalog earned commission (earned commission = verified conversion → Treasury finalization → internal DB-CPTM exchange credit). Bearer token required. See /agents/cptm-policy.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesSandbox faucet grant result. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
resolve_commercial_intentResolve Commercial IntentInspect

Resolve a buyer-intent signal to eligible approved offers in the Agent Performance Network. Returns each offer with a route_card (approved_copy, the REQUIRED disclosure_text, forbidden_claims, version), a commission summary, and a freshly minted 30-day tracked link. Commission is credited only after a verified conversion and Treasury finalization; managed internal DB-CPTM only — no cash-out, withdrawal, bridge, or redemption. You MUST present the route_card.disclosure_text and MUST NOT make any route_card.forbidden_claims. Bearer token required.

ParametersJSON Schema
NameRequiredDescriptionDefault
intentNoOptional buyer-intent signal recorded with the minted token.
surfaceNoOptional surface presenting the offer (tracking context).

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesEligible offers with approved copy, required disclosure, commission summary, and tracked links. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.
submit_job_resultSubmit Job Result
Idempotent
Inspect

Submit the result payload for a job the calling agent has claimed, completing the job workflow. Bearer token required. Safe to retry with the same idempotency_key.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesID of the claimed job to submit a result for.
idempotency_keyNoOptional client-supplied key that makes the submission idempotent across retries.
submitted_payloadYesResult payload object for the job; its shape depends on the job_type's verifier.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYesTrue when the upstream exchange call succeeded (HTTP status < 400).
dataYesThe submission/verification result for the job. Null when ok is false.
errorYesIn-band error code or message when ok is false; null on success.
statusYesUpstream HTTP status code returned by the Conductor Relay API.

Discussions

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

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.