Tank Fight MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Tank Fight MCPwhat are the tank dimensions and bullet damage per the spec?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Tank Fight MCP — the game spec as a service
An MCP server that serves the canonical specification for Tank Fight: field and window size, tank and bullet stats, spawn rules, scoring, controls, menu behaviour, AI strategies, the difficulty ramp, and a destructible maze per level.
It runs as a local service on a port. Any MCP client can connect, ask what tools it offers, and query the specification — while building the game in Java, in TypeScript, or in anything else.
What it's for
Two jobs, and the second matters more than it first looks.
1. Keep independent implementations in agreement. Two builds of the same game, written separately, drift the moment they need a number nobody wrote down. Both asking the same service how big a tank is removes the guesswork.
2. Stop the model inventing requirements. Every detail a spec leaves out is
a place where an AI coding assistant quietly picks something plausible and moves
on — do bullets stop at walls? can allies shoot each other? what happens when a
player is destroyed mid-round? It rarely mentions that it decided. Each of
those is answered here, so the question becomes a lookup instead of a guess, and
open_questions names what genuinely isn't decided, so the honest answer is
"ask a human" rather than a confident invention.
Related MCP server: OWASP Pentest Guide Knowledge Base
Run it
Requires uv.
uv syncuv run server.pyThat serves the specification at http://127.0.0.1:8082/mcp. Use --port to
listen elsewhere, --host to bind another interface, and --stdio for clients
that only speak stdio.
Connect a client
Any MCP client, any number of them at once. For Claude Code:
claude mcp add --transport http tank-spec http://localhost:8082/mcpAdd --scope project to record it in the repository you're building in, so
everyone working on that build gets the same specification. Then /mcp to
confirm the connection, and the client can ask the server what tools exist and
how to call them — nothing here needs configuring per client.
Tools
Tool | Answers |
| What's in the spec, one line each — start here |
| One section, or a dotted path like |
| "Does X happen?" — finds the rule that decides it |
| What level N means: total enemies, max concurrent, spawn interval, which maze |
| That level's brick layout, expanded into tiles, with an ASCII picture |
| What the spec deliberately hasn't decided |
What this server deliberately does not do
It has no idea who is connected or what they are building, and that is on purpose. It knows about the specification; clients know about the server. Nothing points the other way.
So checking whether an implementation still matches the spec is the client's job. A client can read the values out of its own code and compare them against what these tools return — it is sitting in that repository and the server is not. A server that reached into a checkout to inspect it would have to know the language, the file layout and the path, and would need updating every time another implementation appeared.
The same reasoning is why the spec is served rather than shipped as a file:
It's outside every implementation. A session working in one repository can't read another's files, but it can call a service.
It's queried, not dumped.
search_spec("friendly fire")returns one rule. Loading the whole specification into a model's context to answer one question is exactly the waste this avoids.Some answers are computed, not stored. Levels are generated from a ramp formula — level 6 exists in no file.
resolve_levelis the only correct way to ask, and its integer truncation is load-bearing: a floating-point version disagrees at four of the eight levels.
Destructible brick and per-level mazes
Everything inside the border is brick, and brick can be shot away — by both sides, since sides matter for tanks and never for walls. A tile is 20x20 and takes 40 damage, so two standard bullets open a hole that tanks then drive through. The border itself is immune.
Each level has its own maze, so the level number is the only difficulty knob: it sets how many enemies arrive, how fast, and the terrain they arrive into. Level 1 is nearly open; level 8 is dense enough that shooting a path is usually faster than finding one.
get_maze(level) returns the rectangles, the expanded tile list, and a picture:
########################################
#EE................EE................EE#
#EE................EE................EE#
#......................................#
#......BBBBBBBBBBB....BBBBBBBBBBB......#
...
#.............AA...AA...AA.............#
########################################Use the expanded tiles rather than expanding the rectangles yourself — that step, and the rule for which tile a bullet damages when it straddles two, are where two builds most easily end up digging different holes from the same shots.
Adding a maze is just adding rectangles under mazes.levels in the YAML. The
test suite then holds it to the invariants that make a level playable:
tile-aligned, inside the area, non-overlapping, spawn and ally boxes clear, and
every entry point reachable on foot without destroying anything — digging is a
shortcut, never a requirement.
Editing the spec
spec/game-spec.yaml is the whole thing, and it's meant to be edited by hand —
that's the point. The server re-reads it on every call, so a change takes effect
immediately without restarting anything.
The specification was seeded from a working implementation and is independent of it from that point on. It leads: change a value here first, then make the implementations follow.
Tests
uv run pytesttests/test_spec.py pins the spec's values and holds every maze to the
playability invariants. tests/test_server.py drives the server through an MCP
client — discover the tools, read their descriptions, call them.
tests/test_http.py starts the real process on a port and connects to it over
HTTP, the way a client does.
Layout
spec/game-spec.yaml the specification — the actual source of truth
server.py MCP server: tool definitions, their descriptions, and the transport
tank_spec/spec.py loading, searching, level maths, maze expansion
tests/ spec and maze invariants, MCP integration, HTTP transportMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceA read-only MCP server for navigating OpenAPI / Swagger specifications, enabling agents to search endpoints, retrieve parameters and schemas, and inspect authentication without loading the full spec into context.934MIT
- AlicenseAqualityBmaintenanceRead-only MCP server for precise lookup, search, and versioned retrieval of OWASP testing guides (WSTG, MASTG, ISTG, AITG) with full provenance on every result.11Apache 2.0
- AlicenseAqualityCmaintenanceExposes the canonical 17-0 knowledge surface including game rules, roster constraints, and entry points for the NFL roster strategy game to MCP-compatible AI clients.2MIT
- AlicenseAqualityCmaintenanceProvides read-only access to the 27-0 NRL game knowledge including rules, roster constraints, and official links for MCP-compatible AI clients.2MIT
Related MCP Connectors
Read-only MCP server for the WebAssembly spec: instructions, types, sections, search, proposals.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
MCP server for accessing curated awesome list documentation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/LarryAtGU/tank-fight-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server