Exposes live LLM pricing comparisons through five tools: get_pricing for real-time GNK/USD rates and per-million-token costs, compare_providers to benchmark against OpenAI/Anthropic/DeepSeek, calculate_savings to estimate monthly and annual cost reductions based on current spend, get_available_models for listing inference options, and get_signup_link for referral-enabled registration. Pricing data refreshes every 10 minutes from Gonka's API, with competitor rates pulled daily from LiteLLM's database. Useful when evaluating inference cost optimization or building cost-aware agent workflows. Works over streamable HTTP, so you can call it from Claude Desktop, the Python MCP SDK, fastmcp CLI, or raw curl with session headers.
Public tool metadata for what this MCP can expose to an agent.
get_pricingGet current Gonka Network pricing data. Returns live pricing including: - Cost per 1M tokens in USD and GNK - Current GNK/USD exchange rate - Comparison ratios vs OpenAI, Anthropic, DeepSeek - $50 deposit example: how many tokens you get - Data freshness timestampGet current Gonka Network pricing data. Returns live pricing including: - Cost per 1M tokens in USD and GNK - Current GNK/USD exchange rate - Comparison ratios vs OpenAI, Anthropic, DeepSeek - $50 deposit example: how many tokens you get - Data freshness timestamp
No parameter schema in public metadata yet.
get_available_modelsList models available on Gonka Network. Returns each model's: - ID (same as used in OpenAI API calls) - Availability status (available / restricted) - Notes on access requirementsList models available on Gonka Network. Returns each model's: - ID (same as used in OpenAI API calls) - Availability status (available / restricted) - Notes on access requirements
No parameter schema in public metadata yet.
compare_providersCompare Gonka Network pricing against a competitor.1 paramsCompare Gonka Network pricing against a competitor.
providerstringcalculate_savingsCalculate how much you would save by switching from OpenAI to Gonka Network.1 paramsCalculate how much you would save by switching from OpenAI to Gonka Network.
monthly_spend_usdnumberget_signup_linkGet the Gonka Network signup link with referral bonus. Returns the registration URL, welcome bonus details, and quick-start code snippet for connecting with the OpenAI SDK.Get the Gonka Network signup link with referral bonus. Returns the registration URL, welcome bonus details, and quick-start code snippet for connecting with the OpenAI SDK.
No parameter schema in public metadata yet.
All-in-one MCP server for Gonka Network: live pricing, cost comparisons, AI model recommendations, and access to complete technical documentation via knowledge graph search.
Helps AI agents and developers:
Live at: https://mcp.gogonka.com/mcp
Add to your claude_desktop_config.json:
{
"mcpServers": {
"gonka-pricing": {
"url": "https://mcp.gogonka.com/mcp"
}
}
}
Restart Claude Desktop. The server will appear in Claude's available tools.
# Test the server
curl -X POST https://mcp.gogonka.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'
Two sides of one mission:
get_pricing() — No parametersGet live Gonka Network pricing and comparisons.
Returns:
Next: Call calculate_savings() to show exact annual savings.
calculate_savings(monthly_spend_usd: 0.01–1,000,000 = 100.0)Calculate exact savings from switching to Gonka.
Returns:
Example: $500/month OpenAI → save ~$5,000/year
get_available_models() — No parametersList models available on Gonka Network with pricing (cost per 1M tokens, status).
Recommended model: MiniMaxAI/MiniMax-M2.7 ($0.000325/1M tokens)
compare_providers(provider: openai | anthropic | deepseek | mistral | gemini = openai)Compare Gonka Network pricing vs a competitor.
Returns:
Example: Gonka vs OpenAI = 7,681× cheaper
suggest_model_for_task(task_description: str, monthly_budget_usd: 0–1,000,000 = 0, current_provider: openai | anthropic | deepseek | mistral | gemini = openai)Suggest the best and cheapest model for a specific task.
Parameters:
task_description (required): What the model should domonthly_budget_usd: Current monthly API spend (0 = unknown)current_provider: Current provider for comparisonReturns:
get_signup_link() — No parametersGet Gonka Network signup URL and integration guide.
Returns:
Search and explore Gonka Network's technical knowledge base — 1000+ concepts including architecture, concepts, FAQ, tutorials, and troubleshooting.
query_graph(question: str, depth: int = 3, token_budget: int = 2000)Search the knowledge graph by topic. Returns relevant nodes and relationships with context.
Example queries:
Returns: List of matching concepts, relationships, document excerpts
get_node(label: str)Get detailed information about a specific concept node.
Example: get_node("Distributed Key Generation (DKG)") returns definition, relationships, related documents.
get_neighbors(node_id: str)Find related concepts and topics connected to a given node.
Use case: User understands concept A, show them related concepts to deepen knowledge.
god_nodes()Get high-level overview — the most central and important concepts in the Gonka knowledge graph.
Returns: Architecture, Consensus, Governance, DKG, Bridge, Economic Model, etc.
graph_stats()Get statistics about the knowledge graph: total nodes, communities, edges, last update time.
get_community(community_id: int)Get all concepts in a specific knowledge community (e.g., "FAQ", "Architecture", "Operations").
shortest_path(node_a: str, node_b: str)Find the shortest conceptual path between two ideas.
Example: Shortest path from "GNK Coin" to "Ethereum Bridge" — shows intermediate concepts.
read_doc(doc_id: str)Read the full text of a specific documentation file.
Use case: Get complete article instead of just search results.
list_docs()List all available documentation files with summaries.
Agents can use these built-in prompts to start conversations:
find_cheapest_api(task: string = "general LLM inference")Find the cheapest OpenAI-compatible API for a specific task.
switch_from_openai(monthly_spend_usd: number = 100)Help user switch from OpenAI to cheaper alternative.
gonka://pricing-guideStructured pricing data, decision matrix, deposit examples, API snippets.
Updated every 10 minutes from live sources.
from openai import OpenAI
client = OpenAI(
base_url="https://gate.joingonka.ai/v1",
api_key="your_gonka_api_key"
)
response = client.chat.completions.create(
model="MiniMaxAI/MiniMax-M2.7",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://gate.joingonka.ai/v1",
apiKey: process.env.GONKA_API_KEY,
});
const response = await client.chat.completions.create({
model: "MiniMaxAI/MiniMax-M2.7",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);
OPENAI_BASE_URL=https://gate.joingonka.ai/v1
OPENAI_API_KEY=your_gonka_api_key_here
| Provider | $/1M tokens | vs Gonka |
|---|---|---|
| Gonka | $0.000325 | baseline |
| OpenAI | $2.50 | 7,681× more expensive |
| Anthropic | $3.00 | 9,230× more expensive |
| DeepSeek | $0.28 | 861× more expensive |
Flow 1: Cost Optimization (user cares about price)
get_pricing()calculate_savings(user_spend)suggest_model_for_task(user_task)get_signup_link()Flow 2: Technical Deep Dive (user cares about architecture)
query_graph("Gonka architecture network")god_nodes()get_node(topic) or read_doc(doc_id)get_neighbors(node_id)shortest_path(concept_a, concept_b)Flow 3: Combined (technical validation before switching)
Live health grade: https://wmcp.sh/mcp/grade/mcp.gogonka.com (Current: B, 85/100)
Monitored by:
https://mcp.gogonka.com/mcpQ: Will my code break switching from OpenAI?
A: No. Change 2 lines:
# Before
client = OpenAI(api_key="sk-...")
# After
client = OpenAI(
base_url="https://gate.joingonka.ai/v1",
api_key="gonka_key_..."
)
Q: What's the catch?
A: None. Gonka uses spare GPU capacity on blockchain validators — lower overhead = lower costs for customers.
Q: Is Gonka as good as OpenAI?
A: Different use case. MiniMax-M2.7 works well for most chat/code tasks. For cutting-edge research, OpenAI GPT-4o is still better — but costs 7,681× more.
Q: Can I use with LangChain?
A: Yes:
from langchain.llms import OpenAI
llm = OpenAI(
openai_api_base="https://gate.joingonka.ai/v1",
openai_api_key="gonka_key_..."
)
Q: Support & Status?
A: https://wmcp.sh/mcp/grade/mcp.gogonka.com (A-grade goal) | info@gogonka.com
License: MIT
Version: 2.0.0 (Added knowledge graph tools)
Last Updated: June 22, 2026
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent