Revuo
tools.list_by_name
List every (product, tool) pair that shares a normalized name. A disambiguation lookup — same name across providers does NOT mean the tools are interchangeable. Ranking basis: tier weight (Featured > Verified > Free), then productName. Every result carries { position (1-based), rank (0..1) } so callers can merge results across tools consistently. Response: { normalizedName, total, tools[] (each: position, rank, productSlug, productName, displayName, description, inputSchema, serverQualifiedName, isRemoteCapable, tier, unverified, verifiedAt) }.
Remote revuo:revuo
Other tools also called tools.list_by_name?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"description": "Normalized tool name (e.g. 'search', 'create_issue')",
"type": "string"
}
},
"required": [
"name"
]
}