Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions schemas/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,49 @@ export const services: ServiceDef[] = [
],
},

// ── Ando ───────────────────────────────────────────────────────────────
{
id: "ando",
name: "Ando",
url: "https://andoai.xyz",
serviceUrl: "https://inference.andoai.xyz",
description:
"First-party accountless LLM inference through Tempo MPP session payments. Agents can pay for inference without an Ando API key.",

categories: ["ai"],
integration: "first-party",
tags: [
"llm",
"inference",
"chat",
"agents",
"tempo",
"mpp",
"openai-compatible",
],
status: "active",
docs: {
homepage: "https://docs.andoai.xyz/docs/agents/tempo-mpp-inference",
llmsTxt: "https://docs.andoai.xyz/llms.txt",
apiReference:
"https://docs.andoai.xyz/docs/developers/api-reference/mpp-chat-completions",
},
provider: { name: "Ando", url: "https://andoai.xyz" },
realm: "inference.andoai.xyz",
intent: "session",
payments: [TEMPO_PAYMENT],
endpoints: [
{
route: "POST /v1/mpp/chat/completions",
desc: "Buffered chat completions with token-metered Tempo MPP session billing",
dynamic: true,
amountHint:
"Token-metered; 1 USDC.e cumulative voucher bucket with 5 USDC.e suggested reusable session deposit",
unitType: "token",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Preserve Ando's token unit in discovery output

For this dynamic endpoint, unitType: "token" is dropped by buildPayment in scripts/generate-discovery.ts because that function only copies unitType in the fixed-price branch. In contexts that consume generated /api/services data or the MCP services worker's exact unitType filter/facet, Ando won't be discoverable as a token-metered service even though the registry entry declares it that way; either serialize unitType for dynamic payments or don't rely on this field here.

Useful? React with 👍 / 👎.

},
],
},

// ── Anthropic ──────────────────────────────────────────────────────────
{
id: "anthropic",
Expand Down