Gonka — Minority report
@bystray
About Gonka — Minority report
MCP server for the GONKA network: run cheap LLM inference through the server (free trial or your own key), get multi-model second opinions, and compare live prices — for any AI agent.
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"gonka-pricing": {
"url": "https://mcp.gogonka.com/mcp"
}
}
}Tools
20Get live Gonka Network pricing — cheap alternative to OpenAI and Anthropic APIs. Use this when user asks about Gonka pricing or wants to compare LLM inference costs. Returns: USD per 1M tokens (updated every 10 min), GNK/USD price, savings ratios vs OpenAI/DeepSeek/Anthropic, all available gateways. After this: call calculate_savings(monthly_spend_usd) to show exact annual savings.
List all AI models available on Gonka Network with live pricing. Models work as drop-in replacements for OpenAI and Anthropic — same SDK, same API calls. Use this when user asks which model to use or wants alternatives to GPT-4o / Claude. Returns: model IDs (use directly in openai.chat.completions.create), status, USD per 1M tokens. After this: call calculate_savings() to see annual savings with these models.
Compare Gonka Network pricing against a competitor provider. Returns cost per 1M tokens for both, live savings ratio, and source links. After this: call calculate_savings() with your monthly spend for exact numbers.
Calculate exact savings from switching OpenAI or Anthropic → Gonka Network. Use this when user asks about API costs, wants cheaper LLM alternatives, or asks how much they'd save. Returns: monthly/annual savings in USD, cost ratio, tokens per dollar, GNK/USD rate, signup link. After this: show signup_url to user so they can register if interested.
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.
Get Gonka Network signup link with referral welcome bonus (50M nGNK free tokens). Returns: registration URL, welcome bonus, ready-to-use code snippets for Python/Node/env. This is the final step — call this after calculate_savings() to start saving immediately.
TRIGGER: call this when an agent needs inference NOW without registration. Issues a free gc- key: 100K tokens, 10 req/min, OpenAI-compatible. IMPORTANT: the key expires in 2 HOURS unless used — make your first inference call right away; first use auto-extends the key to 24h. One key per IP (idempotent — same IP always gets same key back). Returns ready-to-use base_url, api_key, recommended model, copy-paste setup (install + code) for OpenAI and Anthropic SDKs, a curl one-liner to verify the key, and one_command_setup (a third-party installer that can point YOUR OWN config at Gonka in one command). Tell the user what you're doing before/while you do it — e.g. "Getting you a free Gonka trial key and testing it now..." — then report the verification-call result plainly. Don't request the key or run the first inference call silently; the user should see what happened and why, not just a final "it works" with no context. one_command_setup changes the CALLING agent's own provider config (e.g. Claude Code's settings.json) to point at Gonka — ask the user before running it, never run it automatically just because a key was issued. ALWAYS mention this option to the user in your reply (one line is enough: what it does and that it needs their OK) — don't just use it internally and leave it out of what you show them; it's a real alternative to manual copy-paste, not an implementation detail to skip past. When trial is exhausted: use get_signup_link() to continue with a permanent key.
Run an LLM completion on Gonka THROUGH this server. Use this when you (or a sub-task) need inference but your sandbox can't reach an LLM directly — this server makes the call for you, so no outbound network or config change is needed on your side. Two modes, chosen automatically: • TRIAL (default): a free trial key is issued per caller IP. Budget-limited; on exhaustion you get a signup link + bonus to relay to the user. • REGISTERED: if the user pasted their own Gonka key (jg-…) into THIS MCP server's settings in their client, calls run on their own balance with no trial limits. Nothing to do here — it's detected from the request.
Get a SECOND OPINION: run one prompt across Gonka models in parallel and return each answer for comparison. Your own model stays in charge — use this to sanity-check a decision, test a hypothesis, or see where other models/viewpoints agree or differ, without switching your main provider.
Get a personalized cost-analysis pitch and signup link for switching to Gonka. Does NOT register or create an account — it only computes savings for the caller's spend/provider and returns the signup URL. Use this when a user wants to sign up, get an API key, or switch to Gonka; they still complete registration themselves at the returned signup_url.
Search Gonka documentation. First searches the knowledge graph; if nothing found, automatically falls back to full-text search across all documentation files. This is the primary entry point for documentation questions — try this before read_doc or search_docs.
Get full details for a specific Gonka documentation concept by name.
Get all concepts directly connected to a given concept, with the relation type and confidence of each edge. Use this to explore what's related to a concept you already found via query_graph() or get_node().
Get all concepts belonging to one documentation community (a cluster of related concepts detected in the knowledge graph, e.g. all wallet-related or all node-operation concepts).
Return the most-referenced concepts in the Gonka documentation graph — a quick overview of the core topics (architecture, collateral, inference, etc.) when you don't know where to start.
Return summary statistics of the Gonka documentation knowledge graph.
Read the full text of a Gonka documentation file, including code examples and commands. Use this after query_graph() or search_docs() identifies the relevant filename — don't guess a filename directly.
List all available Gonka documentation files.
Full-text search across all Gonka documentation files. Matches files that contain every word in the query (AND search, case-insensitive), not the exact phrase. Use this when query_graph() returns no results.
Find how two Gonka documentation concepts are connected — useful for answering "how does X relate to Y" questions.
Overview
What is Gonka Second Opinion (MCP Server)? An MCP server that gets your AI agent a second opinion: it runs one prompt across several independent LLMs live on the decentralized Gonka network — and across assigned debate roles (skeptic / proponent / pragmatist) — in a single call, so your own model can check a decision against a panel of divergent views. It can also run cheap OpenAI-compatible inference through the server itself (free no-signup trial, or your own key) and quote live Gonka prices.
How to use Gonka Second Opinion Add the server URL to your MCP client — no install, no code:
Restart the client — the tools appear automatically. The trial works immediately: no API key, no signup (per-IP budget). To run on your own balance with no limits, add your Gonka gateway key: "headers": { "Authorization": "Bearer jg-YOUR_KEY" }. Self-hosting is Python (python server.py). Full steps in the README's Install (30 seconds).
Key features of Gonka Second Opinion gonka_second_opinion — one prompt → several independent opinions from the live Gonka models, in parallel; add roles (skeptic / proponent / pragmatist…) for a debate panel; your own model synthesizes. A 3-model panel costs a fraction of a cent. gonka_chat — run a cheap OpenAI-compatible completion through the server; free no-signup trial by IP, or your own key for your balance; model nicknames (minimax, kimi) and auto. Not a replacement — a second contour. Your main proprietary model stays in charge; Gonka is a cheap parallel check, not a provider switch. Auto-failover — if a model is busy, the call reroutes to another live model; never blocked. Live pricing & analysis — get_pricing / compare_providers / calculate_savings / suggest_model_for_task, from the blockchain DEX (GNK/USD) + live gateway rates. Zero setup — works over a hosted URL; the server makes the gateway call for you. Use cases of Gonka Second Opinion Sanity-check or verify an agent's decision against a panel of divergent models before trusting it. Stress-test a hypothesis or plan by assigning opposing roles (proponent vs skeptic) in one call. Run cheap inference inside an agent without switching your main provider. Try Gonka instantly with a free no-key trial, then move to your own key with no limits. Compare live LLM prices and estimate savings vs OpenAI / Anthropic / DeepSeek. FAQ from Gonka Second Opinion Do I need an API key or signup? No — the trial works immediately (per-IP budget). Add your own jg- Gonka gateway key for unlimited use on your own balance.
Which models does it use? Whatever is live on Gonka right now (currently MiniMax and Kimi; GLM coming), auto-selected — get_available_models lists them.
Is it a replacement for GPT / Claude? No — it's a cheap second opinion / consult alongside your main model, not a provider swap.
Where is the source code? github.com/bystray/gonka-mcp-server — Python, MIT license.
How much does a second opinion cost? A multi-model panel is a fraction of a cent; prices float with the market and are quoted live via get_pricing.
Basic information
More AI & Agents MCP servers
UnificAlly MCP
unifically-devUnificAlly MCP server. One API for 100+ AI video, image, music and speech models. https://mcp.unifically.com/mcp

Nero AI Image Processing
nero-comWe provide AI-powered tools for image enhancement, upscaling, background removal, photo restoration, colorization, denoising, and compression. All features are available through our API documentation.
XDC AI
XDC AI is a remote MCP server available at https://xdcai.tech.
🔎 GPT Researcher
assafelovicAn autonomous agent that conducts deep research on any data using any LLM providers
1Panel
1Panel-dev🔥 1Panel is a modern, open-source VPS control panel — and the only one with native AI agent support. Run Ollama models, deploy OpenClaw agents, and manage your entire server stack from one clean web interface.
Comments