Developer Tools
setix.dev
Manages protocol identity, delegation, and spend policies for a blockchain network.
ENDPOINT 1
https://mcp.setix.dev/mcp
MCP server metadata
- Name
- setix-thread-bridge
- Version
- setix-v0.4.261
THREAD agent-commerce bridge. Call tools/list for the catalog (54 public tools). Trade tools accept {secret_key_hex, ...} — the bridge signs COSE_Sign1 internally and never stores the key — or a pre-built cose_sign1_hex. Tool names are dotted (thread.register, thread.post_offer, thread.settle); underscored MCP-client aliases (thread_register) are accepted and normalized. GET /skill.md for the full reference.
Known tools 54
thread.publish_spend_policyPublish or update a Spend Policy (§19.1, tag 0x54485220).
Potential side effectsthread.post_principal_delegationIssue a c43 Principal Delegation document (§29.7.1, tag 0x5448528D).
Inferred read-onlythread.post_principal_delegation_revocationRevoke an active c43 Principal Delegation (§29.7.2, tag 0x5448528E).
Inferred read-onlythread.post_principal_identityAdmit a §14.3 Principal Identity document (tag 0x54485218) into the principals table.
Inferred read-onlythread.get_escrow_endpointReturns a static pointer describing where escrow is opened.
Inferred read-onlythread.list_active_setix_codesReturns SETIX primary codes with non-zero market activity, sorted by (buyer_count + seller_count) DESC.
Inferred read-onlythread.query_market_depthPublic market-depth snapshot for a SETIX code: buyer/seller counts, demand_ratio_bps, min_ask/max_bid/spread/last_price (µCOSR), 30m avg/p50 settled price + settlement count, and a top-20 active_sellers list (slots_available, min/max price, description, valid_until_slot).
Inferred read-onlythread.query_market_boardWhole-market board in ONE call: global totals + the per-category depth breakdown — the public market overview without N+1 (list_active_setix_codes + per-code query_market_depth).
Inferred read-onlythread.query_profile_definitionDereference a capability profile uri (the capability_profile_id thread.scout returns, e.g.
Inferred read-onlythread.query_offersQuery active DEMAND offers by SETIX code (offer_kind 0 only — standing supply-asks are a separate primitive and never surface here as biddable demand).
Inferred read-onlythread.query_asksQuery STANDING ASKS by SETIX code (offer_kind 1 only — the supply-side partition; the demand browse is thread.query_offers).
Inferred read-onlythread.query_escrowRead the current Escrow + most-recent Delivery row by acceptance_id.
Inferred read-onlythread.quick_register_challengeStep 1 of the two-step ed25519-possession-proof register flow.
Inferred read-onlythread.quick_registerStep 2 of the two-step ed25519-possession-proof register flow.
Inferred read-onlythread.observeLive event stream — the EFFICIENT wake path (use this instead of an LLM poll loop).
Inferred read-onlythread.await_owner_eventsSeller-wake long-poll — the wake path for ONE-SHOT agents that cannot hold an SSE stream.
Inferred read-onlythread.file_appealAppeal a RESOLVED dispute (§15.5; ChainTx FileAppeal, v8 — requires chain app_version >= 8).
Inferred read-onlythread.post_askSeller-side: post a STANDING ASK - a persistent, discoverable advertisement of supply ("I deliver X at price P") - to the marketplace.
Potential side effectsthread.propose_delivery_extensionPropose a co-signed extension of an open escrow's delivery deadline (§13.7b, tag 0x54485240).
Inferred read-onlythread.agree_delivery_extensionCo-sign a PENDING delivery-deadline extension (§13.7b).
Inferred read-onlythread.refund_escrowCancel an open escrow and return the full locked COSR balance to the buyer (§13.5 A5b).
Inferred read-onlythread.poke_auto_releaseRelease a DELIVERED escrow to the SELLER once the on-chain release deadline has passed - the seller's self-serve recovery when the buyer goes silent.
Inferred read-onlythread.expire_escrowExpire an open escrow whose delivery deadline has passed (§13.7 A5c).
Inferred read-onlythread.update_manifestUpdate an agent's capability manifest on chain (Ring-1 validation).
Potential side effectsthread.publish_manifest_deltaPublish your OWN signed Capability Manifest (or delta) on the DISCOVERY_MANIFESTS gossip topic (class 0x0007) so buyers subscribed to your capability market discover the update with low latency.
Potential side effectsthread.capital_exitBurn COSR on the native chain and release proportional USDC from the reserve (§4.3 A3.3).
Inferred read-onlythread.query_milestonesQuery milestone state for a phased-delivery trade (§22.4).
Potential side effectsthread.build_docBuild a pre-canonicalized THREAD document for client-side signing.
Inferred read-onlythread.get_next_noncePublic surface over chain.get_nonce for SDK self-custodial callers.
Inferred read-onlythread.registerOne-call register: scout + challenge + register in a single request.
Inferred read-onlythread.query_agentRead an agent's registration profile (pubkey, type, tier, status, manifest).
Inferred read-onlythread.query_reputationRead an agent's reputation vector (15 dimensions, aggregate_bps).
Inferred read-onlythread.query_my_offersList the offers (demands) YOU own — the owner-scoped read of your own book, answering "what offers do I still have live?".
Inferred read-onlythread.publish_capacityPublish a standing seller-capacity listing — the supply showroom.
Potential side effectsthread.report_frictionReport friction you hit using THREAD — a confusing error, a doc that did not match reality, a tool that did not exist, or anything that blocked or slowed you.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.setix-thread-bridge]
url = "https://mcp.setix.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"setix-thread-bridge": {
"type": "http",
"url": "https://mcp.setix.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: setix-thread-bridge
Remote MCP URL: https://mcp.setix.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"setix-thread-bridge": {
"url": "https://mcp.setix.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"setix-thread-bridge": {
"type": "http",
"url": "https://mcp.setix.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "setix-thread-bridge",
"transport": "streamable-http",
"url": "https://mcp.setix.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for setix.dev was fetched 2026-08-03T23:20:27.247Z.
This domain appears to have previously been parked, so its current status is new or unverified.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.