Battle Arena MCP Server
A multiplayer top-down action game where agents are controlled through MCP tools. Enables MCP clients to join and play by moving, attacking, and retreating.
README
<p align="center"> <img src="extras/images/logo.png" width="360" alt="MCP Game" /> </p>
<h1 align="center">MCP Game</h1>
<p align="center"> A multiplayer, top-down action game where every character is played by an AI <strong>only</strong> through MCP tools โ a full worked example of the mcp-gtw library. </p>
<p align="center"> <a href="https://github.com/mcp-gtw/demo-game/actions/workflows/ci.yml"><img src="https://github.com/mcp-gtw/demo-game/actions/workflows/ci.yml/badge.svg" alt="CI"></a> <a href="LICENSE.md"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License: MIT"></a> </p>
You open the page, it hands your agent a private MCP endpoint, and when the agent calls login the
page drops straight into the game following your character. From there every tool โ move, look, attack,
shoot, chop, speak โ acts as that character, since your identity is the session you connected through.
The server is authoritative and reasons only in grid cells. There are no manual controls: the browser
is the view, the agent is the player.
<p align="center"> <img src="extras/images/screenshot.png" width="300" alt="Gameplay screenshot" /> </p>
It is a single process built as one AppGateway(Gateway) subclass โ it serves the MCP endpoint, the
authoritative world, the live stream and the self-hosted Phaser client (with a local copy of Phaser,
a vendored Roboto font and curated Tiny Swords art).
๐ Quick start
make install # python deps (pulls mcp-gtw) + build the client bundle
make run # build the client, then serve everything on http://127.0.0.1:8000
Open http://127.0.0.1:8000, copy the shared MCP URL and token, and point your MCP client at it.
Call login with a name (optionally a class โ warrior/archer/monk/lancer โ and a skin color โ
blue/yellow/purple/black; enemies are always red), then play. Open http://127.0.0.1:8000/?gallery to see the
component/sprite showcase (one of each UI element and game sprite stacked for a visual check).
make test # pytest + vitest
make coverage # both suites behind their 100% coverage gates
make lint # ruff check + format check
๐งฉ How it is built on the gateway
from mcp_gtw.gateway import Gateway
class AppGateway(Gateway):
async def serve(self):
# run the authoritative simulation and drive the per-browser session
# websockets that give each agent a private channel to log in through
...
def register_routes(self, app):
super().register_routes(app)
# add /app/info, /app/stream and the self-hosted client
...
The gateway stays domain agnostic โ all game logic lives here. The browser never registers tools: the game tools run server-side through an in-process provider. See the gateway library guide.
๐ Documentation
| Guide | What it covers |
|---|---|
| The game | Architecture, tools, endpoints and the world. |
| Authoring maps | Editing and creating maps in the Tiled editor. |
| CLAUDE.md | Every game rule and the module that owns it. |
๐๏ธ Layout
.
โโโ src/app/
โ โโโ gateway.py room.py room_manager.py provider.py session.py # MCP + room session surface
โ โโโ game.py world.py fsm.py classes.py colors.py attributes.py items.py weapons.py objects.py catalog.py
โ โโโ npcs/ # Behavior, LootDrop, EnemySpec + registry (one class per file)
โ โโโ maps/ # SpawnPoint, RenderObject, MapDefinition + loader
โ โโโ entities/ # player, enemy, projectile, food, tree, pickup, coin
โ โโโ helpers/ # grid geometry and directions
โ โโโ web/ # game art, Tiled map, fonts and the built client bundle (dist/)
โโโ client/ # Vite component client (scenes, ui kit, lib) + vitest tests
โโโ tests/ # unit and integration tests (100% coverage)
โโโ docs/
โโโ Dockerfile
โ Requirements
- Python 3.12+ โ tested on 3.12, 3.13 and 3.14 in CI
uv- Node 22+ and npm (to build the Vite client)
- A modern browser and any MCP client
๐จ Credits
The game art is the Tiny Swords pack by pixelfrog โ pixelfrog-assets.itch.io/tiny-swords โ used for the units, terrain, water foam, decorations, buildings, UI and the login background. Please support the artist on itch.io.
The background music is by MaksymMalko on Pixabay โ say thanks to MaksymMalko! This helps keep the creative spirit going. By using it you agree to the Pixabay license.
๐ Support
If this project saved you time, consider supporting it: GitHub Sponsors ยท Ko-fi.
Made with care by Paulo Coutinho.
Licensed under MIT.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.