MCP Bench Router MCP Server

MCP server that delegates design tasks to the top-ranked model on designarena.ai via OpenRouter

Local serverstdio

What is the MCP Bench Router MCP server?

MCP server that delegates design tasks to the top-ranked model on designarena.ai via OpenRouter. That is what the mcp bench router mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

AI coding assistants produce mediocre frontend/design output. designarena.ai maintains a live leaderboard of the best design models, updated every 2 hours. This MCP server lets Claude (or any MCP client) automatically route design tasks to the current best model.

The tools it exposes

The server publishes 6 tools. What each one is for:

  • get_best_design_model — Get the current #1 design model, optionally by category
  • get_leaderboard — Browse full rankings with category filter and pagination
  • query_design_model — Send a prompt to the best available model via OpenRouter
  • query_specific_model — Send a prompt to a specific model via OpenRouter
  • Prerequisites — The Prerequisites tool exposed by this server
  • Cursor — The Cursor tool exposed by this server

Getting it running

The server ships on npm as mcp-bench-router, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What it needs from you

Configuration is passed through the environment: OPENROUTER_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js >= 18 - An OpenRouter API key (required for query_design_model and query_specific_model)

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP Bench Router's toolset — get_best_design_model, get_leaderboard, query_design_model and 3 more — is a fair guide to whether it matches your workflow. It is maintained by k1ta141k; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MCP Bench Router's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_best_design_modelGet the current #1 design model, optionally by category
get_leaderboardBrowse full rankings with category filter and pagination
query_design_modelSend a prompt to the best available model via OpenRouter
query_specific_modelSend a prompt to a specific model via OpenRouter
PrerequisitesThe Prerequisites tool exposed by this server.
CursorThe Cursor tool exposed by this server.

How to install the MCP Bench Router MCP server

{
  "mcpServers": {
    "bench-router": {
      "command": "npx",
      "args": ["-y", "mcp-bench-router"],
      "env": {
        "OPENROUTER_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js >= 18 - An OpenRouter API key (required for query_design_model and query_specific_model)
VariableDescriptionRequired
OPENROUTER_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Bench Router to get best design model.
  • Use MCP Bench Router to get leaderboard.
  • Use MCP Bench Router to query design model.

Frequently asked questions

It connects MCP Bench Router to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (get_best_design_model, get_leaderboard, query_design_model, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Bench Router directly.