Server data from the Official MCP Registry
Evaluate, benchmark, and simulate AI agents on the VerifyAX agent-evaluation platform.
Evaluate, benchmark, and simulate AI agents on the VerifyAX agent-evaluation platform.
The VerifyAX MCP server is well-structured with proper authentication, clean code practices, and appropriate permission scoping. The API key is correctly handled via environment variables, and the codebase exhibits good error handling and input validation. Minor code quality observations exist but do not present security concerns. Supply chain analysis found 6 known vulnerabilities in dependencies (2 critical, 3 high severity). Package verification found 1 issue (1 critical, 0 high severity).
8 files analyzed · 10 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Set these up before or after installing:
Environment variable: VERIFYAX_API_KEY
Environment variable: VERIFYAX_MCP_LOG_LEVEL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-verifyax-mcp-server": {
"env": {
"VERIFYAX_API_KEY": "your-verifyax-api-key-here",
"VERIFYAX_MCP_LOG_LEVEL": "your-verifyax-mcp-log-level-here"
},
"args": [
"-y",
"verifyax-mcp-workspace"
],
"command": "npx"
}
}
}From the project's GitHub README.
Conversational access to the VerifyAX agent-evaluation platform, plus the typed SDK it is built on. Two packages in one pnpm monorepo:
| Package | Description |
|---|---|
@verifyax/sdk | Typed TypeScript client for the VerifyAX REST API. Reusable by any consumer. |
@verifyax/mcp-server | MCP server exposing 12 VerifyAX tools mapped to user intents. Built on the SDK. |
This complements (does not replace) the verifyax-api skill:
the skill is for developers writing code; the MCP server is for conversational workflows.
Requires Node ≥ 20 and a VerifyAX API key (Settings → API Keys in the console).
Claude Code:
claude mcp add verifyax --env VERIFYAX_API_KEY=sk-ver-api-... -- npx -y @verifyax/mcp-server
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"verifyax": {
"command": "npx",
"args": ["-y", "@verifyax/mcp-server"],
"env": { "VERIFYAX_API_KEY": "sk-ver-api-..." }
}
}
}
Restart the client, then describe what you want. See
packages/mcp-server for the full tool list and configuration.
Once installed, just describe the task — Claude picks the tool:
Blocking tools (generate_scenario, evaluate_agent) poll internally and return only when the
work completes (typically 30s–5min) — no manual status checks.
env block in
your MCP client config.VERIFYAX_MCP_LOG_LEVEL=debug. Logs are structured JSON on stderr; stdout is
reserved for the MCP protocol.See docs/PLAN.md for the phased execution plan and CLAUDE.md for
project context and architecture decisions.
This project is maintained internally by the VerifyAX team at Conscium.
External pull requests aren't accepted — please open an issue
to report a bug, an outdated API behavior, or a feature request; that's the best way to reach us.
CONTRIBUTING.md is the development reference for maintainers and forks.
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).
MCP Inspector is the official interactive
UI for listing tools, calling them, and inspecting responses. Run it with npx — no install
required.
Shells: the commands below use
\line-continuations (bash / zsh / macOS / Linux). In Windows PowerShell, put each command on one line, or continue with a backtick`instead of\.Pass the key with
-e: Inspector does not inherit your shell environment — the spawned server only sees variables passed explicitly via-e KEY=value.
stdio (local default) — Inspector spawns the server as a subprocess. Build first, then:
pnpm build
npx @modelcontextprotocol/inspector \
-e VERIFYAX_API_KEY=sk-ver-api-... \
node packages/mcp-server/dist/index.js
# Windows PowerShell (single line)
pnpm build
npx @modelcontextprotocol/inspector -e VERIFYAX_API_KEY=sk-ver-api-... node packages/mcp-server/dist/index.js
Inspector opens a browser tab (default http://localhost:6274). Use the Tools pane to call
list_compatible_tags or other non-blocking tools first.
To exercise the published package without a local build:
npx @modelcontextprotocol/inspector \
-e VERIFYAX_API_KEY=sk-ver-api-... \
npx -y @verifyax/mcp-server
Windows — avoid spaces in the Command path. Inspector's stdio launcher splits the spawn command on spaces, so a node path like
C:\Program Files\nodejs\node.exe(or a repo under a folder such asOneDrive - Company) fails with "command not found" / "connection closed". Use space-free paths: the 8.3 short name for node (C:\PROGRA~1\nodejs\node.exe) and a no-space working copy (e.g. a directory junction:mklink /J C:\verifyax "C:\Users\you\OneDrive - Co\verifyax"). Or skip the subprocess entirely and use the Streamable HTTP mode below, which has no spawn step and isn't affected.
Streamable HTTP — for the HTTP entry point (verifyax-mcp-server-http). Works the same on all
platforms (no command spawn, so the spaces caveat above doesn't apply). Start the server in one
terminal, then open Inspector in another:
# terminal 1
pnpm build
node packages/mcp-server/dist/http.js
# terminal 2
npx @modelcontextprotocol/inspector
In the Inspector UI, choose Streamable HTTP, set the URL to http://127.0.0.1:8080/mcp, and
add a header: Authorization: Bearer sk-ver-api-... (or X-VerifyAX-API-Key: sk-ver-api-...).
For scripted checks from the CLI:
npx @modelcontextprotocol/inspector --cli http://127.0.0.1:8080/mcp \
--transport http \
--header "Authorization: Bearer sk-ver-api-..." \
--method tools/list
Set VERIFYAX_MCP_LOG_LEVEL=debug on the server process to see structured JSON logs on stderr
while you test.
The MCP server sends no telemetry. It talks only to the VerifyAX API using the key you
provide via VERIFYAX_API_KEY.
Apache-2.0. See LICENSE.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.