魂斗罗 MCP Demo
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., "@魂斗罗 MCP DemoStart a new game of Contra."
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.
魂斗罗 MCP Demo
This project follows the architecture from Chris Nager's DOOM MCP App write-up, but uses an original placeholder browser game with Contra-style horizontal shooting.
The important part is not "MCP creates a game." The point is:
MCP can return a live app UI, not just text or JSON. In compatible clients, the game appears inside the conversation itself.
No original Contra assets, music, characters, levels, or ROM data are included.
Main Flow
create_game_session: creates an inline game session and returns MCP App metadata so compatible hosts can render the game inline. It intentionally does not expose the browser fallback URL.get_game_launch_url: creates a signed/game/play?token=...URL for hosts that cannot render MCP Apps inline./game/play?token=...: browser fallback route. The token is enough to boot the same game session without durable server-side session storage.ui://contra-style/mcp-app.html: the inline MCP App resource. It listens for thecreate_game_sessiontool result, extracts the session, and runs the game directly in the host iframe.
Optional extension tools:
update-game-state: the MCP App can publish score, HP, position, enemies, ammo, and stage.get-game-state: reads the latest state.suggest-next-move: returns a Chinese gameplay suggestion from the latest state.
Run
npm install
npm run build
npm run serveMCP endpoint:
http://localhost:3001/mcpUse From Codex Or Another MCP Host
Ask the host to call:
create_game_sessionIf the host supports MCP Apps, it should render the game inline from:
ui://contra-style/mcp-app.htmlThat is the primary demo: the host calls a tool, and the tool result causes a playable game UI to appear in the chat surface. Do not show or open a fallback link in this path.
If inline rendering is unavailable, call:
get_game_launch_urlThen open the returned /game/play?token=... URL.
Browser Fallback
After npm run build && npm run serve, call get_game_launch_url and open the returned URL.
For quick UI development only:
npm run devThat opens the game without a signed session, so it is useful for visual testing but not the main demo flow.
Controls
Move:
WASDor arrow keysShoot:
SpaceorJRestart:
R
Video Talking Points
This is modeled after the DOOM MCP App architecture, not a from-scratch game-dev tutorial.
The headline is: MCP can return an interactive game UI inside the conversation.
The primary path is inline-only; the signed browser launch URL is exposed only by
get_game_launch_url.The MCP App runs the game directly in the host iframe; it does not iframe another page inside the app.
The real MCP lesson: protocol + UI resource + signed launch flow can turn a web capability into an AI-client-native app.
Verification
npm run check
npm run build
curl -sS -X POST http://localhost:3001/mcp \
-H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
--data '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/code-cheers/deep-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server