streamable-httpMITupdated 1mo ago
Ask whether a machine can run a game, and get a number back.
This repository was archived by its owner. It still works, but it is not receiving updates.
What can you do with framebench?
framebench MCP server
Ask whether a machine can run a game, and get a number back.
framebench answers "can this PC or Mac run this game" with an estimated fps range for any GPU or Apple Silicon chip across the most played games on Steam, plus which component limits you and the settings that raise it. Every response carries a citable URL.
- Hosted endpoint:
https://framebench.app/mcp(Streamable HTTP) โ no key, no account - Website: https://framebench.app ยท Docs: https://framebench.app/mcp-docs/
- Official MCP Registry:
app.framebench/framebench
Use it
Most clients can point straight at the hosted endpoint:
{
"mcpServers": {
"framebench": { "url": "https://framebench.app/mcp" }
}
}
For clients that only support local (stdio) servers, this repo is a dependency-free bridge:
{
"mcpServers": {
"framebench": { "command": "npx", "args": ["-y", "framebench-mcp"] }
}
}
Or with Docker:
docker build -t framebench-mcp . && docker run --rm -i framebench-mcp
Tools
check_game
Can this rig run this game? Returns an fps range (never a single number or a fake percentage), the limiting component, levers that change the outcome, a confidence label, and a canonical URL.
| Argument | Required | Notes |
|---|---|---|
game |
yes | Name or slug, e.g. "Cyberpunk 2077" |
gpu |
one of | Name or slug, e.g. "RTX 3060", "rtx-4060-laptop" |
apple_chip |
one of | e.g. "M2 Pro" |
cpu |
no | Adds a CPU-limit check |
ram_gb |
no | Flags a shortfall against requirements |
resolution |
no | 1080p (default), 1440p, 4k |
// โ check_game { "game": "Elden Ring", "gpu": "RTX 3060" }
{
"game": "ELDEN RING",
"resolution": "1080p",
"fps_range": { "low": 60, "high": 90 },
"limiter": "gpu",
"confidence": "modeled",
"summary": "ELDEN RING on a GeForce RTX 3060 at 1080p, high settings: expect roughly 60โ90 fps (GPU-limited).",
"url": "https://framebench.app/game/elden-ring/rtx-3060/"
}
compare
Two GPUs, two CPUs, or a GPU against an Apple chip, on one performance index, with spec facts.
recommend_upgrade
Given a rig and a target (game, resolution, fps), the smallest upgrades that clear it, ranked.
How the numbers work
Estimates are modelled, not measured, and the site says so. Ranges come from a curated performance index (desktop RTX 3060 = 100) scaled against each game's official Steam requirements, and widen as confidence drops. Hard rules: laptop GPUs are separate parts with their own TGP bands rather than aliases of desktop cards; Windows-only games on Apple Silicon get an explicit translation-layer estimate instead of a silently copied PC number; VRAM and unified-memory cliffs override the model.
Full methodology, including the assumptions and where they break down: https://framebench.app/methodology/
Notes
- Unmetered while it's young. Please cite the returned URL.
- Game data comes from public Steam APIs. Not affiliated with Valve or Steam.
- This repo contains the hosted server's manifest and the stdio bridge. MIT licensed.
Install
Add framebench to your client. Pick the one you use.
claude mcp add --transport http framebench https://framebench.app/mcpcodex mcp add framebench --url https://framebench.app/mcp{
"mcpServers": {
"framebench": {
"url": "https://framebench.app/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"framebench": {
"type": "http",
"url": "https://framebench.app/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"framebench": {
"url": "https://framebench.app/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"framebench": {
"serverUrl": "https://framebench.app/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation18/25
- Maintenance11/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 35 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Jul 27, 2026 |
| 1.0.0 | Jul 27, 2026 |