framebench
Server Details
Estimated game fps for any GPU or Apple Silicon chip, with the limiter and tweaks.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- aistripes/framebench-mcp
- GitHub Stars
- 1
- Server Listing
- framebench MCP server
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 3 of 3 tools scored.
Each tool has a clear, non-overlapping purpose: check_game checks rig-game compatibility, compare compares hardware components, and recommend_upgrade suggests GPU upgrades. No ambiguity.
Two tools follow verb_noun pattern (check_game, recommend_upgrade), but 'compare' is just a verb, breaking the pattern slightly. Overall consistent and readable.
With 3 tools, the server is focused but covers the core workflows. While slightly low, it's appropriate for the domain of performance benchmarking and upgrade advice.
The tools cover checking compatibility, comparing hardware, and recommending upgrades. Minor gaps exist (e.g., no tool to view rig specs alone), but the main use cases are addressed.
Available Tools
3 toolscheck_gameAInspect
Can this rig run this game? Returns an fps range, the limiting component, tweak levers, a confidence label, and the canonical framebench URL to cite.
| Name | Required | Description | Default |
|---|---|---|---|
| cpu | No | Optional CPU name or slug, e.g. "Ryzen 5 5600" | |
| gpu | No | GPU name or slug, e.g. "RTX 3060" or "rtx-3060-laptop". Provide gpu OR apple_chip. | |
| game | Yes | Game name or framebench slug, e.g. "Cyberpunk 2077" | |
| ram_gb | No | Optional system RAM in GB | |
| apple_chip | No | Apple chip name or slug, e.g. "M2 Pro" | |
| resolution | No | Target resolution, default 1080p |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but description details the return values (fps range, limiting component, etc.), giving a clear picture of the tool's behavior. It does not disclose potential error cases or mutation vs read, but the purpose is well-conveyed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, front-loaded with the core question, no extraneous information. Highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema, the description lists all expected return fields. With 6 parameters and no annotations, it provides a clear picture of inputs and outputs, though it could mention required parameter 'game' more explicitly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are documented. Description adds no additional parameter-level information beyond the schema, earning the baseline score of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool's purpose: checking if a rig can run a game and listing the returned outputs (fps range, limiting component, etc.). It distinguishes from siblings 'compare' and 'recommend_upgrade' by focusing on a single configuration.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description implies usage (checking a game-rig combo) but does not explicitly state when to use this tool vs alternatives like compare or recommend_upgrade. No exclusions or prerequisites mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compareAInspect
Compare two GPUs, two CPUs, or a GPU vs an Apple chip on the framebench performance index, with spec facts and the canonical comparison URL.
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | First part, name or slug | |
| b | Yes | Second part, name or slug |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions the output includes spec facts and a canonical URL, but does not disclose whether the operation is read-only, any side effects, authentication needs, or behavior on invalid input. This is adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence of 20 words, front-loading the action and parameters. Every word adds value, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (2 string params, no output schema), the description covers the core purpose and output. It lacks details on error handling or validation, but overall sufficiently defines the tool's function.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with simple descriptions ('name or slug'). The tool description adds semantic context by specifying that the parameters represent GPUs, CPUs, or Apple chips and that they are compared on the framebench index, going beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool compares two GPUs, two CPUs, or a GPU vs an Apple chip on the framebench performance index, with spec facts and the canonical URL. It uses a specific verb 'compare' and resource type, and distinguishes well from sibling tools 'check_game' and 'recommend_upgrade'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use the tool (to compare hardware sets) and what the output includes, but does not explicitly state when not to use it or suggest alternatives. The specificity of input types offers implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommend_upgradeBInspect
Given a rig and a target (game + resolution + fps), return the smallest GPU upgrades that clear the target, ranked.
| Name | Required | Description | Default |
|---|---|---|---|
| game | Yes | Game name or slug the target refers to | |
| resolution | No | ||
| target_fps | No | Desired average fps, default 60 | |
| current_gpu | Yes | Current GPU name or slug | |
| max_results | No | Max options to return, default 5 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must carry full burden. It only states what the tool returns but fails to disclose behavior like handling of invalid inputs, no-upgrade cases, or ranking criteria.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with key information, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, no annotations. Description lacks details on output format, ranking criteria, and default behaviors (e.g., resolution default, target_fps default 60). Incomplete for reliable agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high (80%), so baseline is 3. The description adds minimal parameter context, only mentioning 'game + resolution + fps' but not explaining 'current_gpu' or 'max_results'.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the smallest GPU upgrades that clear a target, with specific verb 'return' and resource 'GPU upgrades'. It distinguishes from siblings 'check_game' and 'compare' by focusing on upgrade recommendations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when needing upgrade recommendations but does not explicitly state when not to use or provide alternatives. No mention of siblings or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityAmaintenanceVendor-neutral local LLM inference benchmark and hardware-config advisor for mlx and llama.cpp. Exposes an MCP tool that measures real tokens/second on your own hardware.345Apache 2.0

ToolPiperofficial
Alicense-qualityCmaintenance300+ MCP tools for macOS, all on-device — local AI inference (llama.cpp on Metal), voice, vision OCR, local RAG, browser automation, and ~140 system actions across 26 macOS domains. Nothing leaves your Mac.1MIT- Flicense-qualityDmaintenanceAutomates downloading mobile game performance data from PerfDog and converts it to Tableau-ready CSV format with device statistics, FPS metrics, and time-series data.

Yamaru Hardware Probeofficial
AlicenseAqualityDmaintenanceExpert system hardware probe and performance diagnostic engine for AI, Gaming, and High-Performance workflows. Provides deep system insights such as real-time monitoring, thermal diagnostics, and LLM optimization.11396Apache 2.0
Your Connectors
Sign in to create a connector for this server.