Description du serveur (copiée ; langue non vérifiée)
Optional combined research route: ONE call turns a task into: (1) its live MARKET — the semantic neighbourhood of the closest-matching providers, found purely by text-embedding nearness (NO fixed category), with the relevance floor and how many providers cleared it; (2) current pricing context — comparable price range and median with mean, stdev and n, plus provider/priced counts; and (3) a ready-to-compare provider shortlist — each with observed price, market_position (below/in-line/above market), integration status, match score, and handles collected in `compare_ready`. Retrieval is 100% nearest-neighbour by text embedding: providers are matched on what they actually DO, never on an assigned label. REUSES the canonical pricing/search engines (no new pricing logic). Also returns `suggested_alternatives` (cheaper or stronger options) and a `result_fingerprint` (+ `cached`) so repeat calls are cheap. It does NOT run the comparison — pass `compare_ready` to compare_providers once you have finalists. For detailed inspection prefer the default path: search_providers → get_provider_profile → compare_providers. Aliases: `task` also accepts `query` / `q`.
Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
{
"type": "object",
"required": [
"task"
],
"properties": {
"sort": {
"enum": [
"match",
"price_asc"
],
"type": "string",
"description": "Shortlist ordering. Default 'match'."
},
"task": {
"type": "string",
"description": "Required — the natural-language capability/task, e.g. 'reconcile supplier invoices' or 'litigation-analysis provider'. Aliases: query, q."
},
"limit": {
"type": "number",
"description": "Shortlist size (1-12, default 5)."
},
"buyer_tier": {
"enum": [
"individual",
"pro",
"team",
"enterprise"
],
"type": "string",
"description": "Optional buyer tier to price against ('team' = Team/SME)."
},
"integrations": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional required integrations, e.g. [\"zendesk\",\"slack\"] — soft preference; integration status is reported per provider."
},
"provider_type": {
"enum": [
"auto",
"agent",
"mcp",
"api",
"any"
],
"type": "string",
"description": "Preferred delivery type. 'auto' (default) infers from the task; note 'AI agent' phrasing is treated as generic (neutral), not an agent-only filter. When a type is explicit (mcp/api/agent) matching providers are SOFT-RANKED to the top and the rest are kept as clearly-labelled cross_type_alternative entries — never hard-filtered (no zero-result cliff), and the functional match is never changed. Every provider is labelled with provider_type (public values: agent | mcp | api | unknown) + type_match_score; provider_type{type_rank_boost_applied, boosted_provider_type, result_counts_by_type} is returned."
},
"response_mode": {
"enum": [
"summary",
"full"
],
"type": "string",
"description": "'summary' (default) or 'full' (adds tier cohorts, coverage and raw results)."
},
"max_monthly_usd": {
"type": "number",
"description": "Optional budget ceiling in USD/month — filters the shortlist and drives suggested_alternatives."
}
}
}