Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Brotato Coach
B
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:49:08 PM

Brotato Coach

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Deterministic Brotato theorycrafter MCP server: facts and math, not guesses.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "brotato-coach": {
      "command": "npx",
      "args": [
        "-y",
        "brotato-coach"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Brotato Coach

A deterministic theorycrafter for Brotato, delivered as an MCP server you can chat with from Claude Code (and other MCP clients).

The design principle: a deterministic core holds the ground truth β€” weapon/item/character data, DPS formulas, stat mechanics β€” so the language model looks facts up and computes instead of recalling (and misremembering) them. Every tool returns a finished, verifiable answer or a structured error; there are no baked-in tier lists or opinions, only facts and math.

The dataset (data/brotato.json) is not committed β€” it is derived from copyrighted game files, so you build it yourself from a local Brotato install (see Building the dataset). A full build from Brotato 1.1.15.4 contains 202 weapons, 197 items, 50 characters, and 15 weapon-class sets.

Requirements

  • Python 3.11+
  • uv for environment/dependency management

Install dependencies:

bash
uv sync

Quick start

Build the dataset (needs a local extraction β€” see Building the dataset), then start the server:

bash
uv run python build_dataset.py                        # writes data/brotato.json
uv run python -m brotato_coach.server                 # starts the MCP server over stdio

The server refuses to start without data/brotato.json and tells you to build it first.

Run the tests (the dataset-dependent integration test is skipped when no dataset is built):

bash
uv run pytest        # 89 tests (88 passed + 1 skipped without a built dataset)

Run

bash
uvx spudcoach --data /path/to/brotato.json

The dataset is never distributed β€” build your own from your Brotato install: uv run python build_dataset.py (see docs/extraction-setup.md). Game version auto-detects from the decompiled recovered/singletons/progress_data.gd, and generated_at defaults to the current UTC time β€” pass --game-version/--generated-at explicitly to override either. SPUDCOACH_DATA works as an env-var alternative to --data.

Use as a Claude Code plugin

The MCP server is described by plugin/.mcp.json:

config.json
{
  "mcpServers": {
    "spudcoach": {
      "command": "uv",
      "args": ["run", "python", "-m", "brotato_coach.server"],
      "cwd": "${CLAUDE_PLUGIN_ROOT}"
    }
  }
}

The server reads the (locally built) data/brotato.json relative to its working directory, so it must run with the repository root as its cwd (the manifest handles this via ${CLAUDE_PLUGIN_ROOT} when bundled as a plugin), and you must build the dataset first.

To register it directly in Claude Code without packaging, add the server pointed at your checkout, e.g.:

Terminal
claude mcp add spudcoach -- uv run --directory /path/to/spud-coach python -m brotato_coach.server

Once connected, just ask in natural language β€” the model routes your question to the tools below:

  • "Does Handcuffs fit my Ranger run? I'm at 7 ranged damage, 65 HP."
  • "Minigun T4 vs Revolver T4 at 20 ranged damage β€” which hits harder?"
  • "Is attack speed ever dead weight? Can I let knockback go negative on a gun build?"
  • "What does the Ranger's ranged-damage bonus do to a raw stat of 6?"
  • "Here's my run.json β€” how's this build doing?" (post-mortem a whole save at once)

Use with Claude Desktop

Claude Desktop can launch the server with uvx in two forms: fetch straight from this repo (auto-updates on restart, but needs git reachable β€” see the Windows note below), or point at a local checkout (nothing fetched at runtime; the most reliable form on Windows). Either way you supply your own locally built brotato.json β€” the dataset is never distributed.

  1. Install uv on the machine running Claude Desktop (winget install astral-sh.uv on Windows, or the standalone installer).

  2. Open the config file and add the spud-coach server:

    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    Fetch-from-repo form:

    config.json
    {
      "mcpServers": {
        "spud-coach": {
          "command": "uvx",
          "args": [
            "--from", "git+https://github.com/brendanlefebvre/spud-coach",
            "spudcoach",
            "--data", "C:\\Users\\<you>\\path\\to\\brotato.json"
          ]
        }
      }
    }
    

    Point --data at your built dataset (SPUDCOACH_DATA works as an env-var alternative). On macOS use a POSIX path like /Users/<you>/brotato.json.

  3. Fully restart Claude Desktop (quit from the tray, not just close the window).

Windows: "Git executable not found" (or uvx not found)

The git+https://… form makes uv shell out to a git executable. Claude Desktop does not pass your shell β€” or even your System PATH β€” to the MCP subprocess; it spawns servers with its own trimmed environment. (The PATH it prints in the logs is its command-resolution list, not what the child process receives.) So a git that runs fine in PowerShell, installed in a System-PATH directory, can still come back "not found" here β€” and a bare "command": "uvx" can fail to resolve for the same reason. Two fixes:

  • Point at a local checkout β€” no runtime git (recommended). Clone once in a terminal where git works, then use --from <folder> instead of --from git+…:

    powershell
    git clone https://github.com/brendanlefebvre/spud-coach C:\Users\<you>\src\spud-coach
    
    config.json
    {
      "mcpServers": {
        "spud-coach": {
          "command": "uvx",
          "args": ["--from", "C:\\Users\\<you>\\src\\spud-coach", "spudcoach",
                   "--data", "C:\\Users\\<you>\\path\\to\\brotato.json"]
        }
      }
    }
    

    Update later with git pull in that folder, then restart Desktop.

  • Or force the tools onto the server's PATH. Keep the git+https form and add an env block that hands the child an explicit PATH β€” git, plus uv's bin and the winget-links dir:

    json
    "env": {
      "PATH": "C:\\Program Files\\Git\\cmd;C:\\Users\\<you>\\.local\\bin;C:\\Users\\<you>\\AppData\\Local\\Microsoft\\WinGet\\Links;C:\\Windows\\System32"
    }
    

    If uvx itself still isn't found, also set "command" to its absolute path (Get-Command uvx to locate it, e.g. C:\Users\<you>\AppData\Local\Microsoft\WinGet\Links\uvx.exe).

Available tools

All tools return a JSON object. Lookups that miss return {"error": "not_found", "did_you_mean": [...]}.

22 tools. Arguments marked ? are optional.

Start here

ToolArgumentsReturns
read_meβ€”Session-start primer: how Brotato's core loop works, the source-verified stat mechanics, and what every precomputed field assumes. Call once, before anything else

Data lookups

ToolArgumentsReturns
get_weaponname, tier?Weapon record incl. raw stat-aware fields, on-hit effects, and weapon-class sets; {matches:[...]} if tier omitted and several tiers match
get_itemnameItem record: effects, tags, archetype, frozen_stat
get_characternameCharacter kit: wanted_tags, banned_item_groups, flat_bonuses, gain_modifiers, special_effects, class_bonuses, starting_weapon_pool
get_weapon_class_setclass_nameWeapon-class set bonuses (Blade, Gun, Elemental, …), by equipped count
list_weaponsscaling_stat?, tier?{weapons:[...]} filtered summaries
list_itemstag?, scaling_stat?, archetype?, tier?{items:[...]} filtered summaries
list_charactersscaling_stat?, wanted_tag?, banned_item_group?, special_effect?, class_bonus_set?, can_start_with?, detail?{characters:[...]} β€” full records, not summaries (see below)
get_filter_optionsβ€”Valid filter values in the dataset: item tags, archetypes, scaling stats, tiers, weapon-class names, enemy abilities / attack kinds / zones, and the character filter vocabularies

DPS & comparison

ToolArgumentsReturns
weapon_dpsname, tier, stats, aoe_enemies_hit?, character?, weapon_count?, engagement_distance?, loadout?, apply_set_bonuses?Realized, stat-aware DPS at your build, split into base_dps + proc_dps, with a cadence breakdown and the assumptions baked in
compare_weaponsnames_with_tiers, stats, plus the same optional arguments as weapon_dps{ranking:[...]} sorted by DPS descending, at one shared stat block
compare_merge_pathsweapon_name, path_a, path_b, stats?Winner or crossover_rd for two tier-merge paths (lists of tiers)
stat_gradientweapons, stats, step?, character?, aoe_enemies_hit?, engagement_distance?Which stat to buy next: stats ranked by the DPS gain from +step of each. DPS only β€” survivability is out of scope

Build evaluation

ToolArgumentsReturns
evaluate_item_for_builditem_name, character_name, current_statsPer-effect verdict β€” live / wasted / harmful β€” with reasons, plus a summary
loadout_set_bonusesweapon_namesPer-class set progress across a whole loadout: equipped count, active bonuses, and next threshold
explain_statstatVerified stat mechanics: caps, special behavior, neglectable / never-negative flags
stat_display_valuecharacter, stat, raw_valueDisplayed value after the character's gain modifiers (e.g. Ranger RD 6 β†’ 9)

Bestiary

ToolArgumentsReturns
get_enemyname, wave?Enemy record: base stats, per-wave stat slopes, attack profile, ability tags. Pass wave (1-20) to also resolve effective stats at that wave
list_enemiesappears_in?, ability?, attack_kind?{enemies:[...]} filtered summaries
wave_compositionwave, danger?Base-game (Crash Zone) composition for a wave: enemy groups, base counts, first-spawn timing, repeats

Run analysis & metadata

ToolArgumentsReturns
evaluate_runpath? or run_json?One-call post-mortem of a whole Brotato run.json save: run context (character, wave, danger), realized stats, weapon-DPS ranking, set progress, and per-item verdicts
check_dataset_versionβ€”game_version, generated_at, schema_version

Batch lookups. get_weapon, get_item and get_character accept name as either a string or a list of strings. A list returns {"results": [...]} in the order given, each entry a record or its own not_found β€” so detail on several entities costs one round-trip, not N.

list_characters returns full records, unlike list_weapons / list_items, which return summaries. The whole 50-character corpus is only ~7.7K tokens, so a survey answers in a single call with no follow-up get_character; pass detail="summary" for {id, name} rows instead. Its scaling_stat filter is a derived union β€” characters have no scaling-stat field β€” matching a positive stat-gain modifier, a positive flat bonus, or a matching wanted_tag. Each matched record carries a scaling_match object naming which signal fired, e.g. Engineer {"gain_pct": 25, "flat": 10, "wanted": true} vs Technomage {"wanted": true}, so the derivation is visible rather than asserted. Characters penalised in that stat are excluded from the match.

starting_weapon_pool is the run-start weapon-selection pool, not a fixed starting weapon: most characters offer a dozen or more, Arms Dealer offers only the Pistol, and Beast Master and Bull offer none.

stats / current_stats are objects keyed by short stat name (e.g. {"ranged_damage": 7, "max_hp": 65}). names_with_tiers is a list of [name, tier] pairs. path_a / path_b are lists of tier numbers. Note the two stat-name forms: stats / current_stats use the short name (ranged_damage), while the stat argument of explain_stat and stat_display_value uses the stat_-prefixed form (stat_ranged_damage). get_filter_options returns the valid filter values so you don't have to guess (all filters are case-sensitive exact matches).

evaluate_run takes exactly one input: pass the save's contents as run_json (e.g. an uploaded/pasted run.json) or its location as path (e.g. a file in your Brotato save directory). The save is read-only β€” it is never modified. Ids the loaded dataset doesn't recognize (e.g. content newer than your build) are listed under notes rather than dropped; a malformed save returns {"error": "bad_run_file", ...}.

Building the dataset

The dataset is not committed β€” it is built from an extraction of a real game install. The raw extracted/, the decompiled recovered/, the copyrighted game_files/, and the derived data/brotato.json are all gitignored (see docs/extraction-setup.md for how the extraction is produced). Once extracted/ is present at the repo root:

bash
uv run python build_dataset.py

This writes data/brotato.json. Game version auto-detects from the decompiled recovered/singletons/progress_data.gd (its VERSION constant), and generated_at defaults to the current UTC time. Pass --game-version <ver> or --generated-at <iso8601> explicitly to override either β€” e.g. if recovered/ isn't present, or to pin a reproducible value for a test or release script. Re-run after each patch to refresh your local copy β€” it stays gitignored, so don't commit it.

How it works

Code
extracted/  (gitignored, regenerable)          raw .tres game data
     β”‚
     β–Ό   build_dataset.py   (offline, per patch)
data/brotato.json  (gitignored, built locally)  the deterministic core artifact
     β”‚
     β–Ό   loaded at startup
brotato_coach.server (FastMCP)                  16 tools over the pure functions
     β”‚
     β–Ό   connected as a plugin
Claude Code / Desktop / Web                     chat frontend
  • brotato_coach/tres.py β€” a minimal Godot .tres parser.
  • brotato_coach/builders/ β€” turn parsed .tres into enriched records (weapons with precomputed DPS lines, items with archetype flags, characters with gain modifiers, sets, and the verified stat_mechanics table).
  • brotato_coach/calc.py β€” pure DPS / merge math (no I/O), unit-tested against hand-verified values.
  • brotato_coach/{query,answers,evaluate}.py β€” pure functions that produce finished answers.
  • brotato_coach/runfile.py β€” pure parser that normalizes a Brotato run.json save into a build (character, weapons, items, realized stats) for evaluate_run; the only I/O is reading the save file.
  • brotato_coach/server.py β€” thin FastMCP wrappers over those functions.

Reference material on the game mechanics the coach encodes lives in docs/ (extraction setup, weapon-merge DPS methodology, run post-mortem methodology, stat mechanics).

Disclaimer

This is an unofficial, fan-made tool. It is not affiliated with, endorsed by, or sponsored by Blobfish, the developer of Brotato, or any of its partners. Brotato and all related names, marks, and assets are the property of their respective owners.

This project ships no game assets and no game data. The stat dataset it operates on is generated locally, by you, from a copy of the game you already own (build_dataset.py reads an extraction of your own install). Nothing derived from the game's copyrighted files is distributed in this repository.

The software is provided "as is", without warranty of any kind (see LICENSE). Its recommendations are computed from datamined values and may be incomplete or wrong; use your own judgment.

License

MIT Β© 2026 Brendan LeFebvre. This license covers the code and documentation in this repository only β€” it does not grant any rights to Brotato or its assets.

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • W
    Windows MCP

    An MCP Server for computer-use in Windows OS

    πŸ’» Developer Tools1 views
    Compare vs Windows MCP β†’
  • S
    Strata

    MCP server for progressive tool usage at any scale (see https://klavis.ai)

    πŸ’» Developer Tools0 views
    Compare vs Strata β†’

Frequently Asked Questions about Brotato Coach

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "brotato-coach": { "command": "npx", "args": ["-y", "Brotato Coach"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewBrotato Coach AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/brotato-coach?style=directory)](https://allmcps.com/mcp/brotato-coach)
HTML Embed
<a href="https://allmcps.com/mcp/brotato-coach"><img src="https://allmcps.com/api/badge/brotato-coach?style=directory" alt="Brotato Coach on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Brotato Coach β†’Install in Claude DesktopInstall in CursorInstall in VS Code