Antics
@antics-gg
An MCP server that lets an AI agent deploy a web game to a playable multiplayer URL — rooms, live state sync, and leaderboards — in one conversation.
Overview
antics
Turn an AI-generated web game into a shareable multiplayer link, without leaving your chat.
antics is an AI-native multiplayer backend for web games. This MCP server closes the loop: your agent writes a single-file HTML game, deploys it through antics, and gets back a public URL where friends join the same room and a leaderboard works out of the box. No backend to write, no player accounts, no build step.
Tools
deploy_game— deploy an HTML game, get a playable multiplayer URL. Works keyless (no login), so it is useful immediately.create_project— create a project and keys for persistent leaderboards and a permanent link.get_leaderboard— read a project's leaderboard.list_projects— list your projects.
Setup
{
"mcpServers": {
"antics": { "command": "npx", "args": ["-y", "antics-mcp"] }
}
}
Then ask your agent to make a game and deploy it. Login is optional: keyless deploys give an instant link that lasts 24 hours; signing in keeps the link and leaderboard permanently.
Links
- Site: https://antics.gg
- Docs for agents: https://antics.gg/llms.txt
Server Config
{
"mcpServers": {
"antics": {
"command": "npx",
"args": [
"-y",
"antics-mcp"
]
}
}
}