1. Conduid
  2. Developer Tools
  3. Eval
MCP server · Developer Tools

Eval

Evaluation tool for MCP servers

Unclaimed last commit 6 months ago devtools
53Fair

Scored 2 days ago · breakdown

About Eval

Eval is an MCP server published by alpic-ai in the Developer Tools category: evaluation tool for MCP servers. It has been installed 0 times through Conduid.

The repository has 19 stars and 3 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcp-eval

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Eval

Powered by Claude · Grounded in docs

I know everything about Eval. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.1v0.1.1 · 9 Feb 2026Full Changelog**: https://github.com/alpic-ai/mcp-eval/compare/v0.1.0...v0.1.1
v0.1.0v0.1.0 · 8 Sep 2025Full Changelog**: https://github.com/alpic-ai/mcp-eval/compare/v0.0.1...v0.1.0
v0.0.1v0.0.1 · 8 Sep 2025Full Changelog**: https://github.com/alpic-ai/mcp-eval/commits/v0.0.1

README

A CLI to evaluate MCP servers performance

oclif Version Downloads/week

Quick start

  • Export your Openrouter API key as OPENROUTER_API_KEY environment variable``
$ export OPENROUTER_API_KEY=<your-key>
  • Write your myserver.yml test case
test_cases:
  - name: "Open a contribution PR on Github"
    input_prompt: "I'd like to contribute to mcp-eval. I want to enable ... feature. I'll let you go ahead and implement the feature as you see fit. Open a pull request with the proposed modification once you're done."
    expected_tool_call:
      tool_name: "open-pr"
      parameters:
        branch: "new-feature"
  • Run your test suite
$ npx -y @alpic-ai/mcp-eval@latest run --url=https://mcp.github.com ./myserver.yml
  • Et voilà 🎉!

Requirements

  • Nodejs >= 22
  • StreamableHTTP or SSE compatible public MCP server

Usage

$ npm install -g @alpic-ai/mcp-eval
$ mcp-eval COMMAND
running command...
$ mcp-eval (--version)
@alpic-ai/mcp-eval/0.11.0 darwin-arm64 node-v22.20.0
$ mcp-eval --help [COMMAND]
USAGE
  $ mcp-eval COMMAND
...

Commands

mcp-eval run TESTFILE

Run the test suite described in the provided YAML file.

USAGE
  $ mcp-eval run TESTFILE -u <value> [-a anthropic/claude|openai/chatgpt|mistral/le-chat]

ARGUMENTS
  TESTFILE  YAML file path containing the test suite

FLAGS
  -a, --assistant=<option>  [default: anthropic/claude] Assistant configuration to use (impact model and system prompt)
                            <options: anthropic/claude|openai/chatgpt|mistral/le-chat>
  -u, --url=<value>         (required) URL of the MCP server

DESCRIPTION
  Run the test suite described in the provided YAML file.

EXAMPLES
  $ mcp-eval run

See code: src/commands/run.ts

Assistant configuration

You can use the -a flag to specify the assistant configuration to use.

Currently, both anthropic/claude and openai/chatgpt are supported.

This will impact the model used, the system prompt and the default tools available to the assistant.

anthropic/claude

  • Model: anthropic/claude-3.7-sonnet
  • Default tools: drive_search, web_search

openai/chatgpt

  • Model: openai/gpt-5
  • Default tools: bio, automations, canmore_create_textdoc, canmore_update_textdoc, canmore_comment_textdoc, file_search, image_gen, python, guardian_tool, web

Test Suite Syntax

Test suite should be written in YAML. A test suite file should have a root test_cases property with at least one test.

Each test requires:

  • name: a convenient name for your test
  • input_conversation: the conversation to send to the assistant. This can be either a single user message or a multi-turn conversation containing both assistant and user messages. It can contain tool calls that already happened during the model thinking process.
  • expected_tool_call: an object detailing the expected tool to be called with:
    • tool_name: the name as advertized by the MCP server of the tool to be called
    • parameters: the expected set of parameters the tool is expected to be called with. Only these specified properties will be checked during comparison with the actual tool call. Extra properties set by the model will not cause the test to fail.

Simple user message example

test_cases:
  - name: "Find flights from Paris to Tokyo"
    input_prompt: "I'd like to plan a trip to Tokyo, Japan. Find me a flight from Paris to Tokyo on October 3rd and returning on October 5th."
    expected_tool_call:
      tool_name: "search-flight"
      parameters:
        flyFrom: Paris
        flyTo: Tokyo
        departureDate: 03/10/2025
        returnDate: 05/10/2025

Multi-turn conversation example

test_cases:
  - name: "Create issue in frontend team for login bug"
    input_conversation:
      - role: user
        content: "I'm seeing a bug where the login button doesn't work. Can you create an issue for this?"
      - role: assistant
        content: "Sure, first let me check which team to assign the issue to. Listing your teams now."
      - role: tool
        tool_name: list_teams
        parameters: {}
        response: |
          [
            {"id": "team_123", "name": "Frontend"},
            {"id": "team_456", "name": "Backend"}
          ]
      - role: assistant
        content: "Now that I see the available teams, I'll assign the issue to the Frontend team."
    expected_tool_call:
      tool_name: "create_issue"
      parameters:
        title: "Login button doesn't work"
        description: "User reports that the login button is not functioning."
        team_id: "team_123"

README mirrored from the source repository 2 days ago. The original is authoritative.

Questions

About Eval

How do I install Eval?

Run npx mcp-eval, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Eval safe to use with an AI agent?

Its trust score is 53 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Eval still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.