Revuo
search_products
Search for B2B SaaS products by name OR by capability. The query is first resolved against the canonical capability taxonomy (e.g. 'salesforce-integration', 'xrechnung-support', 'soc2'); on hit, products that claim that capability are returned. Falls back to name/slug/tagline substring search. Optional category scope. Results are tier-ordered (Featured > Verified > Free). Response: { query, matchType (none|exactSlug|canonicalSlug|nlpFallback), resolvedCapabilities[], products[] }. Each product carries { tier (free|verified|featured), unverified (true only when tier=free; omitted otherwise — absence means trusted), verifiedAt (ISO timestamp of last claim crawl; absent if never crawled), currentScore (0-100), compositeScore (agent-readiness 0-100, nullable), matchedCapability (true if surfaced by capability path) }. Errors: { error: { code: 'not_found'|'bad_input', ... } }.
Other tools also called search_products?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query — capability slug or natural-language description; falls back to name match"
},
"category": {
"type": [
"string",
"null"
],
"default": null,
"description": "Optional category slug to filter results"
}
}
}