Loomal

Monetize a knowledge base for agents

Turn your docs into a paid MCP tool or hosted endpoint. Agents query it and pay per answer in USDC.

You've spent years building documentation, runbooks, or a curated knowledge base. Agents will pay to query it, but only if there's a clean way to charge per answer instead of giving the whole thing away in a scrape.

Loomal turns a knowledge base into a paid surface two ways: expose it as an MCP tool agents call directly, or upload your content to a Loomal-hosted endpoint and let us serve it behind the paywall. Either way, agents pay per query in USDC.

Sell answers, not access to a dump

A flat data export gets copied once and never bought again. A query interface, priced per call, keeps paying: every time an agent needs an answer from your knowledge base, it pays for that retrieval.

This fits how agents work. They don't want your whole corpus; they want the one passage or synthesized answer relevant to the task in front of them, and they'll pay a few cents for it.

Expose it as a paid MCP tool

Define a query tool on your MCP server with a price. When an agent invokes it, Loomal serves the x402 challenge, the agent's client signs the USDC authorization, and your retrieval runs only after settlement. Most MCP clients handle the handshake automatically.

No backend of your own? Upload the docs to a Loomal-hosted endpoint instead and we serve the queries behind the same paywall.

server.ts
server.tool(
  "kb_search",
  { price: "$0.01" },
  async ({ query }) => ({
    content: await retrieveFromKnowledgeBase(query),
  }),
);

Discoverable expertise

List the tool or hosted endpoint and it appears in the Loomal marketplace and the x402 discovery feed. An agent stuck on a problem your docs already answer can find your knowledge base and pay to query it without a human wiring anything up.

Every settled query pays USDC into your non-custodial wallet on Base with a signed receipt, so your documentation becomes a metered revenue stream.

FAQ

MCP tool or hosted endpoint, which should I use?

Use an MCP tool if you have retrieval logic to run. Use a Loomal-hosted endpoint if you just want to upload docs and have them served behind the paywall.

Can I price by query complexity?

Yes. Set a flat per-query price, or compute it from the request before the agent is charged.

Do I keep ownership of my content?

Yes. You retain all rights; Loomal only serves your knowledge base to paying agents on your behalf.

Start selling to agents.

Wrap an endpoint, set a price, get paid in USDC.

Get started