See it in action
how it works
Simply tell me what you require — in plain language, from a web app, an API call, or a message.
works for humans and agents alike
I consult thousands of services across multiple ecosystems and present you with the finest options available.
always complimentary — you pay only upon execution
Select a service, pay only for what you use. Should anything go awry, you receive a full refund.
pay per use · full refund guarantee
where we look
Majordomo consults every major service ecosystem on your behalf. New sources are added regularly — and anyone may contribute their own.
for builders
Build a resolver — a simple HTTP endpoint that receives search queries and returns matching services. Every time a user selects one of your results, you earn a share of the transaction.
app.post('/resolve', async (c) => {
const { intent_id, query } = await c.req.json();
const candidates = await searchMyDataSources(query);
return c.json({
intent_id,
candidates: candidates.map(c => ({
source: 'my-source',
name: c.name,
endpoint_url: c.url,
price_usdc: c.price,
relevance_score: c.score,
}))
});
});