Mcpscope MCP Server

A local-first workbench for developing, inspecting, and benchmarking MCP servers against local (LM Studio, Ollama) or remote (OpenRouter) models —

Local serverstdioTypeScript

What is the Mcpscope MCP server?

A local-first workbench for developing, inspecting, and benchmarking MCP servers against local (LM Studio, Ollama) or remote (OpenRouter) models — Web UI, CLI, and MCP interface over one shared store. That is what the mcpscope 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

Building a good MCP server is empirical work, and you rarely do it alone anymore: a coding agent can run every benchmark and read every trace, but the numbers only get good when the developer stays in the loop — looking at the one run that failed, tightening a tool description or a rubric, deciding what to try next, and re-running. mcpscope is built for that partnership. It is not a benchmark harness an agent runs unattended, and not a GUI a developer drives by hand: every capability is exposed through a web UI shaped for a person and through a CLI and an MCP interface shaped for an agent, all over one shared

The tools it exposes

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

  • LLM — evaluate answer quality**: a separate judge model scores each run against a per-case rubric (see BENCHMARK.md)
  • Interfaces — The Interfaces tool exposed by this server

What it needs from you

Configuration is passed through the environment: BACKEND_HOST. 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.

Getting it running

Installation goes through your MCP client rather than a global install: point it at mcpscope on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

How it compares

Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Mcpscope's toolset — LLM, Interfaces — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
LLMevaluate answer quality**: a separate judge model scores each run against a per-case rubric (see [BENCHMARK.md](BENCHMARK.md)).
InterfacesThe Interfaces tool exposed by this server.

How to install the Mcpscope MCP server

```json
{ "mcpServers": { "mcpscope": { "type": "http", "url": "http://localhost:3066/mcp" } } }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
BACKEND_HOSTEndpoint or connection string the server talks to.Optional

Example prompts to try

  • Use Mcpscope to LLM.
  • Use Mcpscope to Interfaces.

Frequently asked questions

It connects Mcpscope to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (LLM, Interfaces) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Mcpscope directly.