verifyax/verifyax-mcp

๐Ÿ’ป Developer Tools
0 Views
0 Installs

๐Ÿ“‡ โ˜๏ธ - MCP server for the VerifyAX platform. Enables agent evaluation, simulation testing, and functional/non-functional verification workflows through natural language.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "verifyax-verifyax-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "verifyax-verifyax-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

VerifyAX MCP Server

The official Model Context Protocol (MCP) server for VerifyAX: a cloud-hosted bridge that gives your AI tools secure, real-time access to register agents, generate scenarios, run simulations, and read evaluations on the VerifyAX platform.

Official VerifyAX Server GitHub stars License: Apache 2.0 Status: Generally Available

Model Context Protocol compatible MCP Registry: io.github.verifyax Auth: API key Hosting: VerifyAX Cloud or self-host

Agents Scenarios Simulations Evaluations

verifyax/verifyax-mcp MCP server

Getting started ยท Supported tools ยท Security ยท Deploy your own ยท Report an issue


The official VerifyAX MCP Server is a bridge between your MCP-compatible AI client and the VerifyAX agent-evaluation platform. Once configured, it lets you register agents, generate scenarios, run simulations, and read evaluations in natural language โ€” without writing API scripts.

With the VerifyAX MCP Server, you can:

  • Register and test agents (A2A or API) and confirm connectivity before evaluation.
  • Generate scenarios from skill tags and wait for completion in one tool call.
  • Run evaluations and read scores, transcripts, and credit usage without manual polling.

It complements (does not replace) the verifyax-api skill: the skill is for developers writing code; the MCP server is for conversational workflows.

Contents


Supported clients

The VerifyAX MCP Server works with MCP-compatible clients that support Streamable HTTP or stdio:

ClientSetup reference
OpenAI ChatGPTConnectors / MCP guide
Claude (Claude.ai, Desktop, and Code)Claude MCP docs
CursorCursor MCP docs
Visual Studio Code (GitHub Copilot)VS Code MCP docs
GitHub Copilot CLIAbout Copilot CLI
Google Gemini CLIGemini CLI MCP docs
Amazon Quick SuiteMCP integration guide

Any client that can connect via mcp-remote can also use the hosted endpoint at https://mcp.verifyax.com/mcp.

[!TIP] For step-by-step Claude setup and how this compares to the VerifyAX skill and SDK, see docs/using-verifyax-with-claude.md.


Supported tools

Twelve tools mapped to user intents. Blocking tools poll internally and return only when work completes (typically 30sโ€“5min).

AreaToolsBlocking
Agentsregister_agent ยท list_agents ยท delete_agentโ€”
Scenarioslist_compatible_tags ยท generate_scenario ยท list_scenarios ยท delete_scenarioyes (generate_scenario)
Evaluationevaluate_agent ยท list_recent_runs ยท get_run_detailsyes (evaluate_agent)
Usageget_usage_summary ยท preview_run_costโ€”

[!NOTE] For tool descriptions (what Claude reads to pick a tool) and rationale, see docs/tool-descriptions.md. Package-level reference: packages/mcp-server/README.md.


Before you start

Requirements depend on how you connect.

Remote HTTP (hosted at mcp.verifyax.com)

  • A VerifyAX API key (Settings โ†’ API Keys in the console)
  • An MCP client with Streamable HTTP support, or Node.js 18+ to run the mcp-remote proxy

Local stdio (verifyax-mcp-server via npx)

  • Node.js โ‰ฅ 20
  • A VerifyAX API key in your client config (VERIFYAX_API_KEY)

The npm package exposes two binaries (verifyax-mcp-server and verifyax-mcp-server-http); pass the stdio binary name explicitly when using npx.


Install the MCP server

Remote HTTP (recommended)

Hosted endpoint:

https://mcp.verifyax.com/mcp

Send your VerifyAX API key on the initialize request. The hosted server does not store keys โ€” each client session brings its own.

Cursor (native URL โ€” v0.48+):

{
  "mcpServers": {
    "verifyax": {
      "url": "https://mcp.verifyax.com/mcp",
      "headers": {
        "Authorization": "Bearer sk-ver-api-..."
      }
    }
  }
}

Do not add a transport field โ€” Cursor detects Streamable HTTP from the URL. You can also use "X-VerifyAX-API-Key": "sk-ver-api-..." instead of Authorization.

Claude Desktop / clients without native HTTP (mcp-remote):

Add to claude_desktop_config.json (Settings โ†’ Developer โ†’ Edit Config):

{
  "mcpServers": {
    "verifyax": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.verifyax.com/mcp",
        "--transport",
        "http-only",
        "--header",
        "Authorization:${VERIFYAX_AUTH}"
      ],
      "env": {
        "VERIFYAX_AUTH": "Bearer sk-ver-api-..."
      }
    }
  }
}

Use --transport http-only because this server speaks Streamable HTTP only (no legacy SSE). You can also pass X-VerifyAX-API-Key: sk-ver-api-... via --header instead of Authorization.

Restart your MCP client after changing config.

Local stdio

Claude Code:

claude mcp add verifyax --env VERIFYAX_API_KEY=sk-ver-api-... -- npx -y -p @verifyax/mcp-server verifyax-mcp-server

Claude Desktop:

{
  "mcpServers": {
    "verifyax": {
      "command": "npx",
      "args": ["-y", "-p", "@verifyax/mcp-server", "verifyax-mcp-server"],
      "env": { "VERIFYAX_API_KEY": "sk-ver-api-..." }
    }
  }
}

Restart the client after changing config, then describe what you want in natural language.


How it works

Architecture and communication

  1. Your MCP client connects to https://mcp.verifyax.com/mcp (remote HTTP) or spawns npx -p @verifyax/mcp-server verifyax-mcp-server (local stdio).
  2. The client sends your VerifyAX API key on initialize (Authorization: Bearer โ€ฆ or X-VerifyAX-API-Key for HTTP; VERIFYAX_API_KEY env for stdio).
  3. The server calls the VerifyAX API on your behalf. Blocking tools (generate_scenario, evaluate_agent) poll job status internally and return only when work finishes.

Permission and billing

  • Actions are scoped to the workspace tied to your API key.
  • Usage and credits are billed to your VerifyAX workspace, not to the MCP server operator.
  • The hosted server sends no telemetry and does not persist API keys between sessions.

Self-hosting

Run the same HTTP server on your own infrastructure (e.g. Google Cloud Run). See deploy/gcp/README.md.


Example workflows

Once connected, describe tasks in natural language โ€” the client picks the tool.

Agent setup

  • Register: "Register my A2A agent at https://my-agent.example.com and confirm it's reachable."
  • List: "What agents are registered in my workspace?"

Scenario authoring

  • Discover tags: "List the skill tags I can use for an interview scenario."
  • Generate: "Generate an info_exchange scenario tagged empathy and coordination."

Evaluation

  • Run eval: "Evaluate agent X against scenario Y and summarize the scores."
  • Review history: "Show details for my most recent simulation run."

Usage and cost

  • Preview: "How many credits will it cost to run this scenario against my agent?"
  • Summary: "What did my last 5 simulation runs cost?"

[!NOTE] Blocking tools can take 30sโ€“5min. Do not call them repeatedly โ€” wait for the result.


Tips and tricks

Add defaults to AGENTS.md

Reduce discovery calls and bad tag combinations by adding this to an AGENTS.md file in your project root (see the AGENTS.md convention for the format):

## VerifyAX MCP

When connected to verifyax:

- **MUST** call `list_compatible_tags` before `generate_scenario`
- **MUST NOT** combine QnA tags with other tags (QnA must be the sole tag)
- **MUST** use `preview_run_cost` when the user asks about credits before `evaluate_agent`
- Blocking tools (`generate_scenario`, `evaluate_agent`) take 30sโ€“5min โ€” do not retry manually

Use the skill for code workflows

For scripts, CI, or custom multi-step logic, use the verifyax-api skill or @verifyax/sdk instead of MCP tools.


Data and security

  • All traffic to the hosted endpoint uses HTTPS (TLS).
  • API key authentication; every action respects your VerifyAX workspace permissions.
  • The hosted server does not store API keys โ€” each session supplies its own.
  • The MCP server sends no telemetry; it talks only to the VerifyAX API.
  • Destructive tools (delete_agent, delete_scenario) permanently remove resources โ€” confirm with the user before calling them.

API keys are managed in the VerifyAX console (Settings โ†’ API Keys). Revoke a key there to cut off access immediately.


Troubleshooting

  • "VERIFYAX_API_KEY is not set" โ€” the key isn't reaching the server. Check the env block (stdio) or Authorization / X-VerifyAX-API-Key header (HTTP).
  • Authentication failed โ€” the key is invalid, revoked, or from the wrong environment. Mint a fresh one in the console.
  • Tool calls don't appear โ€” MCP clients load tools at startup; restart the client (or start a new session) after adding the server.
  • HTTP connection fails in Cursor โ€” try mcp-remote with --transport http-only, or verify the URL ends with /mcp.
  • Want logs? Set VERIFYAX_MCP_LOG_LEVEL=debug. Logs are structured JSON on stderr; stdout is reserved for the MCP protocol.

Support and feedback

This project is maintained by the VerifyAX team at Conscium.

  • Bugs and feature requests: open an issue
  • Development reference: CONTRIBUTING.md (maintainers and forks)
  • External pull requests aren't accepted โ€” issues are the best way to reach us

Disclaimer

MCP clients can register agents, generate scenarios, run evaluations, and delete resources using your VerifyAX API key and workspace credits. Use least privilege (scoped keys, minimal workspace access), review high-impact actions before confirming, and revoke keys you no longer need.

Model Context Protocol connects AI agents to external tools, which creates powerful workflows but also structural risks. Large language models can be vulnerable to prompt injection and related attacks. Only use trusted MCP clients and servers, and review which tools each agent can access.


For developers

This repository is a pnpm monorepo with two packages:

PackageDescription
@verifyax/sdkTyped TypeScript client for the VerifyAX REST API
@verifyax/mcp-serverMCP server (12 tools) built on the SDK

Requires Node โ‰ฅ 20 and pnpm 10.

pnpm install      # install workspace dependencies
pnpm build        # build all packages (topological order)
pnpm test         # run unit tests
pnpm lint         # lint
pnpm format       # format with prettier

Network-dependent suites: pnpm test:integration (live API, needs VERIFYAX_TEST_KEY) and pnpm test:conformance (spawns the built MCP server over stdio).


License

Apache-2.0. See LICENSE.

Related MCP Servers

Moxie-Docs-MCPโ˜… Featured

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

๐Ÿ’ป Developer Tools2 views
3KniGHtcZ/codebeamer-mcp

๐Ÿ“‡ โ˜๏ธ ๐ŸŽ ๐ŸชŸ ๐Ÿง - Codebeamer ALM integration for managing work items, trackers, and projects. Provides 17 tools for reading and writing items, associations, references, comments, and risk management data via Codebeamer REST API v3.

๐Ÿ’ป Developer Tools1 views
21st-dev/Magic-MCP

Create crafted UI components inspired by the best 21st.dev design engineers.

๐Ÿ’ป Developer Tools0 views
a-25/ios-mcp-code-quality-server

๐Ÿ“‡ ๐Ÿ  ๐ŸŽ - iOS code quality analysis and test automation server. Provides comprehensive Xcode test execution, SwiftLint integration, and detailed failure analysis. Operates in both CLI and MCP server modes for direct developer usage and AI assistant integration.

๐Ÿ’ป Developer Tools0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.