Agent QA
Allows evaluation and grading of MCP servers for listing on the OKX.AI platform, with checks on connectivity, schema validity, error handling, latency, and description quality.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Agent QAevaluate the MCP server at https://example.com/mcp"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Agent QA
Agent QA tells you whether a public MCP server is reliable enough to trust, and gives it a letter grade from A to F.
You hand it the URL of an MCP endpoint. It connects to that server the same way an AI agent would, runs a set of read-only checks, and returns a report you can read in a few seconds.
Why it exists
Anyone listing an MCP server on OKX.AI has to test it first. The tool the docs point to is the MCP Inspector, which you drive by hand, one call at a time. Agent QA does that testing for you and hands back a single graded report.
If you build MCP servers, this shows you where yours breaks before your users do. If you depend on someone else's server, this tells you how much you can lean on it.
Related MCP server: MEOK MCP Hardening MCP
What it checks
Five things, each scored on its own.
Connection and handshake. Can the server open a session and list its tools at all.
Schema validity. Does every tool declare a valid input schema with its required fields. An agent reads that schema to build its calls, so a broken schema breaks the caller.
Malformed input handling. When the server gets bad input, such as a missing field or the wrong type, does it reject it cleanly, or does it crash or quietly return a wrong answer. This probe is read-only. It only sends input that a correct server rejects before it does any real work, so it never triggers a side effect.
Latency. How fast the server answers over repeated calls, reported as p50 and p95.
Description quality. Are the tool names and descriptions clear enough for an AI to pick the right tool and call it correctly. The scoring rubric is written down in the code so every grade is defensible.
The report gives a score for each category, a per-tool breakdown, an overall grade, and a short list of the top issues found.
How to read the grade
A, 90 and above. Reliable.
B, 80 to 89. Minor issues.
C, 70 to 79. Works, with real gaps.
D, 60 to 69. Unreliable in places.
F, below 60. Do not depend on it yet.
An endpoint that cannot be reached scores F, because a server you cannot reach is a server you cannot trust.
How to use it
From the browser
Open the Agent QA site.
Paste the MCP endpoint URL into the box.
Press Evaluate.
Read the grade, the category scores, the per-tool results, and the defect log.
From the command line
Run the agent-qa command with the endpoint URL:
agent-qa https://your-server.example/mcpFor machine-readable output, add the JSON flag:
agent-qa https://your-server.example/mcp --jsonThe command exits with code 1 when the endpoint cannot be reached, so you can drop it into a script or a continuous integration check and let it fail the build on a bad server.
From the HTTP API
Send a POST request to /evaluate with the endpoint URL:
POST /evaluate
{ "endpoint_url": "https://your-server.example/mcp" }It returns the full report as JSON. GET /health returns a liveness check. GET / serves the browser interface.
As an MCP tool
The service is also an MCP server. It exposes one tool, evaluate_mcp_endpoint, with a single endpoint_url parameter, and returns the same report. Any MCP client or AI agent can call it.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Iziedking/Agent-QA'
If you have feedback or need assistance with the MCP directory API, please join our Discord server