RomM MCP Server
An MCP server for RomM — the self-hosted retro game library manager. Browse platforms, search ROMs, view metadata, manage collections, and track saves through any MCP-compatible AI assistant.
Tools
Tool | Description |
| Check server configuration and reachability |
| List platforms with ROM counts and sizes |
| Browse ROMs with filtering and pagination |
| Full ROM detail — metadata, saves, user status |
| Search ROMs by name |
| Library-wide statistics |
| List user-curated collections |
| List save files by ROM or platform |
| Browse by status (now playing, backlog, completed, etc.) |
| Trigger a background library rescan |
Setup
Prerequisites
Python 3.10+
A running RomM instance
A RomM user account (username + password)
Install
pip install fastmcp httpxOr clone and install:
git clone https://github.com/lodordev/romm-mcp.git
cd romm-mcp
pip install .Configure
Set environment variables:
Variable | Required | Default | Description |
| No |
| Your RomM instance URL |
| Yes | RomM username | |
| Yes | RomM password | |
| No |
| Default request timeout (seconds) |
| No |
| Timeout for slow endpoints |
| No |
| Verify TLS certificates |
Add to Claude Code
Add to your .mcp.json:
{
"mcpServers": {
"romm": {
"command": "python",
"args": ["/path/to/romm-mcp/server.py"],
"env": {
"ROMM_URL": "http://your-romm-instance:3000",
"ROMM_USERNAME": "your-username",
"ROMM_PASSWORD": "your-password"
}
}
}
}Add to Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"romm": {
"command": "python",
"args": ["/path/to/romm-mcp/server.py"],
"env": {
"ROMM_URL": "http://your-romm-instance:3000",
"ROMM_USERNAME": "your-username",
"ROMM_PASSWORD": "your-password"
}
}
}
}Examples
Once configured, you can ask your AI assistant things like:
"What platforms do I have in RomM?"
"Search for Zelda games"
"Show me my backlog"
"How many ROMs do I have total?"
"Show me the saves for Super Metroid"
"What's in my favorites?"
Auth
The server uses OAuth2 password grant to authenticate with RomM. Tokens are automatically refreshed when they expire. If a request gets a 401, the server re-authenticates and retries once.
No tokens or credentials are stored on disk — they live in memory for the duration of the server process.
License
MIT