Cleared Index
← Index

Peer LOI · marketplace × trust gate

Cleared × Orbis

Orbis is the dense API marketplace. Cleared is the trust gate before agent spend. Same wallet. Different jobs.

Proposed swap

  • ClearedOrbis

    Check (probe=false) + minScore before Orbis MCP paid calls

  • ClearedOrbis

    Badge + listing card for Orbis origin on Cleared Index

  • OrbisCleared

    Document Cleared Check in Orbis agent / MCP docs as pre-pay

  • OrbisCleared

    Feature Orbis as a Gateway category surface when agents want marketplace breadth

Agent sandwich

// Cleared × Orbis — trust before marketplace pay
const CLEARED = "https://clearedindex.com";
const ORBIS_MCP = "https://orbisapi.com/api/mcp";

async function beforeOrbisPay(origin: string) {
  const res = await fetch(
    `${CLEARED}/api/cleared/check?origin=${encodeURIComponent(origin)}&probe=false`
  );
  const { pass, score } = await res.json();
  if (!pass || score < 70) throw new Error("Cleared Check failed — skip pay");
  // proceed to Orbis MCP / x402 call
  return { orbisMcp: ORBIS_MCP, clearedScore: score };
}

Cold note (copy)

Taylor —

Orbis is already the densest single origin on Cleared Index (~37k endpoints). We're not trying to beat your SKU count.

Propose a simple peer swap:
1) Cleared Check as optional/default pre-pay on Orbis MCP docs
2) Orbis featured as the marketplace breadth path on Cleared Gateway
3) Mutual badge / backlink

Public ask: https://clearedindex.com/partners/orbis
Demo tape (Check → Gateway → CDP → Witness): https://clearedindex.com/tape

— Taylor Good · Cleared Index

Contact: tg@taylorgood.com