suggest_model_for_task
ActiveTool of Gonka Network Pricing
declared in 3.4.2
Suggest the best and cheapest AI model for a given task. Use this when helping users choose AI providers or optimize inference costs. Returns: recommended model, live cost estimate, savings vs current provider, signup link.
Parameters schema
{
"type": "object",
"required": [
"task_description"
],
"properties": {
"current_provider": {
"enum": [
"openai",
"anthropic",
"deepseek",
"mistral",
"gemini"
],
"type": "string",
"default": "openai",
"description": "Current LLM provider for cost comparison."
},
"task_description": {
"type": "string",
"description": "What task the model should perform (e.g. 'chatbot', 'code generation', 'summarization')."
},
"monthly_budget_usd": {
"type": "number",
"default": 0,
"description": "Current monthly API spend in USD (0 = unknown). Optional."
}
},
"additionalProperties": false
}Parent server
Gonka Network Pricing
https://github.com/bystray/gonka-mcp-server
2/7 registries