qc-validator-mcp
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., "@qc-validator-mcpCheck hallucination risk in 'The moon is made of cheese.'"
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.
qc-validator-mcp
Runtime quality validation for AI agent outputs. Detect hallucinations, enforce scope compliance, and score output quality — all via MCP.
Install
npx qc-validator-mcpClaude Desktop
{
"mcpServers": {
"qc-validator": {
"command": "npx",
"args": ["qc-validator-mcp"]
}
}
}Related MCP server: repo-seatbelt
Tools
validate_output
Score agent output against configurable criteria: length limits, required keywords, forbidden patterns, and factual claim density.
Params: output, task_description, criteria { max_length, required_keywords[], forbidden_patterns[], factual_claims_count }
Returns: { pass, score, issues[], recommendation }check_hallucination_risk
Estimate hallucination likelihood. With source text, checks sentence-level grounding. Without source, flags outputs dense with specific numbers, dates, and URLs.
Params: output, source_text (optional), claim_count (default 5)
Returns: { risk_level, unsupported_claims[], confidence, suggestion }check_scope_compliance
Validate output against a scope contract — allowed/forbidden topics, word limits, required sections.
Params: output, scope { allowed_topics[], forbidden_topics[], max_words, required_sections[] }
Returns: { compliant, violations[], scope_utilization_percent }log_validation
Store validation results for per-agent trending.
Params: agent_id, output_hash, score, pass, issues_count
Returns: { logged, agent_id, total_validations }get_failure_patterns
Analyze common failure modes for a specific agent.
Params: agent_id
Returns: { total_validations, pass_rate, avg_score, most_common_issues[], trend }generate_quality_report
Quality dashboard across all validated agents — no parameters required.
Returns: { total_agents, overall_pass_rate, agents[], worst_performers[], best_performers[], recommendations[] }Resource
qc://dashboard— Quality metrics for all validated agents
Architecture
Pure Node.js ES modules
In-memory Maps (no external dependencies)
stdio transport via @modelcontextprotocol/sdk
Zero configuration required
License
MIT
Available Tools
6 toolscheck_hallucination_riskA
Estimate hallucination likelihood in agent output. If source text is provided, checks grounding. Otherwise flags outputs with high counts of specific numbers, dates, and URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| output | Yes | The agent output text to analyze | |
| claim_count | No | Threshold for number of specific claims before flagging as high risk (default 5) | |
| source_text | No | Original source material the output should be grounded in (optional) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It explains the two operating modes (grounding check vs. heuristic flagging) but does not describe the output format, side effects, or any limitations. It adds some transparency but leaves notable gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the primary purpose and then a clear conditional. No wasted words; every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 3 parameters, no output schema, and no annotations. The description explains the tool's core behavior and the conditional use of source_text, but does not specify what the tool returns (e.g., a risk score, a flag, a report). This missing output information makes it less complete than ideal.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by explaining how source_text changes the tool's behavior ('checks grounding') and implying the role of claim_count as a threshold. This goes beyond simple parameter listings.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool estimates 'hallucination likelihood in agent output,' which is a specific verb+resource. It distinguishes from sibling tools like validate_output or check_scope_compliance by focusing on hallucination risk, not structural or scope validation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use the tool (for hallucination risk) and explains two conditional modes based on whether source_text is provided. It doesn't explicitly mention alternatives or exclusions, but the conditional behavior gives practical usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_scope_complianceB
Validate that agent output stays within a defined scope contract. Checks allowed/forbidden topics, word limits, and required sections.
| Name | Required | Description | Default |
|---|---|---|---|
| scope | Yes | Scope contract to validate against | |
| output | Yes | The agent output text to check |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description alone must disclose behavior. It reveals what rules are checked, but it does not mention what the return value or result format looks like, possible side effects, error behavior, or whether it is a read-only operation. For a validation tool, this is a substantial gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, front-loaded with a clear purpose, followed by a compact enumeration of checks. There is no filler or irrelevant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema or annotations, so the description has the full burden of informing the agent of the tool's outcome and behavior. It fails to explain what the tool returns (e.g., boolean, report, throws error) and does not discuss limitations or edge cases, leaving the agent uncertain about post-call handling.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%; both parameters and all nested properties are described. The description's mention of 'word limits, required sections, allowed/forbidden topics' merely restates the schema and adds no deeper semantic value, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Validate') with a specific resource ('agent output') and a specific criterion ('defined scope contract'). It explicitly lists the types of checks (allowed/forbidden topics, word limits, required sections), which distinguishes it from sibling tools like validate_output or check_hallucination_risk.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you need to check output against a scope contract, but it does not explicitly state when to use this tool versus alternatives, nor does it mention exclusions or prerequisites. No contrast with sibling tools is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_quality_reportA
Generate a quality dashboard for all validated agents. Shows per-agent summaries, overall pass rate, worst/best performers, and actionable recommendations.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full responsibility. It discloses what the tool does and what the output contains, which is sufficient for a zero-parameter dashboard generator. It does not mention potential side effects or prerequisites, but these are unlikely to be significant.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no filler. The first sentence states the core action, and the second enumerates the outputs. Both sentences add value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with no output schema, the description is highly complete. It tells the agent exactly what the tool does and what the results contain, leaving no ambiguity about invocation or expected response. Minor gap: no explicit mention of when to use vs. sibling tools, but that's already accounted for in usage guidelines.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the description correctly omits parameter details. Based on the rubric, a baseline of 4 is appropriate for tools with no parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as generating a quality dashboard for all validated agents, listing specific output components (per-agent summaries, pass rate, performers, recommendations). This distinguishes it from sibling tools like validate_output or get_failure_patterns, which focus on individual validation or failure analysis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for obtaining a holistic quality overview after validation, but it does not explicitly contrast it with alternatives or state when not to use it. However, the output details make the intended usage clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_failure_patternsA
Analyze common failure modes for a specific agent. Returns pass rate, average score, most frequent issue types, and quality trend direction.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | Agent identifier to analyze |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. The verbs 'Analyze' and 'Returns' imply a read-only operation, and it does list what it returns. However, it does not disclose any side effects, required permissions, rate limits, or the meaning of 'quality trend direction'—leaving some behavioral uncertainty.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the main action and lists outputs concisely. Every word contributes value, with no fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no output schema, the description adequately covers the core purpose and return values. It could be more complete by defining 'failure modes' or 'trend direction,' but overall it gives sufficient context for an agent to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%: the parameter agent_id is fully described as 'Agent identifier to analyze'. The description only reiterates 'specific agent' without adding new semantic meaning beyond the schema, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with 'Analyze common failure modes for a specific agent' and lists concrete outputs (pass rate, average score, frequent issue types, trend direction). This specific verb+resource combination distinguishes it from sibling tools like validate_output or generate_quality_report.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context ('for a specific agent') but provides no explicit when-to-use or when-not-to-use guidance, nor does it mention alternatives. It relies on the reader to infer that this tool is for analyzing individual agent failure patterns, which is adequate but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
log_validationA
Store a validation result for trending and failure pattern analysis. Accumulates per-agent statistics over time.
| Name | Required | Description | Default |
|---|---|---|---|
| pass | Yes | Whether the output passed validation | |
| score | Yes | Quality score from 0-100 | |
| agent_id | Yes | Unique identifier for the agent whose output was validated | |
| output_hash | Yes | Hash or identifier for the specific output that was validated | |
| issues_count | Yes | Number of issues found |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It adds minimal context by stating that statistics accumulate over time, which hints at persistence and aggregation, but it fails to disclose whether the operation is idempotent, whether duplicates are allowed, what happens on repeated calls, or any permissions or rate limit implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, two sentences long, and front-loaded with the primary action 'Store'. Every sentence contributes meaningful context about the tool's purpose and aggregation behavior, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a moderate-complexity storage tool with well-documented parameters but no output schema or annotations. The description conveys the core purpose but omits details such as expected return values, error conditions, or whether the operation is synchronous. Given the availability of sibling tools, more context on when this fits the workflow would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides complete descriptions for all five parameters with 100% coverage, so the baseline is 3. The description adds no additional parameter context, but since the schema already documents each field's meaning, no further clarification is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool stores a validation result, with the specific purpose of enabling trending and failure pattern analysis. The verb 'store' plus the resource 'validation result' and the context of accumulating per-agent statistics distinguish it from sibling tools like validate_output or get_failure_patterns, which perform validation or retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for recording validation outcomes to enable later analysis, but it does not explicitly state when to use this tool versus alternatives. No exclusions or conditions are mentioned, and sibling tools like validate_output or get_failure_patterns are not referenced for differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_outputA
Score agent output quality against configurable criteria. Checks length, required keywords, forbidden patterns, claim density, and task relevance.
| Name | Required | Description | Default |
|---|---|---|---|
| output | Yes | The agent output text to validate | |
| criteria | Yes | Quality criteria to check against | |
| task_description | Yes | Description of what the agent was asked to do |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It transparently states that the tool evaluates output quality and lists the dimensions it checks, giving the agent a clear sense of its non-mutating evaluation behavior. However, it does not describe the return value format, whether any side effects exist, or how scores are computed, leaving significant behavioral details undisclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The first sentence front-loads the primary purpose, and the second efficiently enumerates the specific checks. Every phrase adds useful information, and it is easy to scan quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description gives a solid overview of what the tool evaluates, but the absence of an output schema and annotations means the agent is left without key context such as the format or meaning of the returned score, thresholds, or how to interpret results. Given the nested criteria object and no output schema, more detail on the output would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage with descriptions for all parameters, so the baseline is 3. The description adds value by summarizing how the parameters map to high-level checks (e.g., 'claim density' corresponds to factual_claims_count and 'task relevance' relates to task_description), making the semantics more accessible. This goes beyond simply restating the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Score') and clearly identifies the resource ('agent output quality') and the configurable criteria. It lists concrete checks (length, keywords, forbidden patterns, claim density, task relevance), which makes the purpose clear. However, it does not explicitly distinguish this tool from sibling tools like check_scope_compliance or check_hallucination_risk, so it falls short of full differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool by enumerating the checks it performs, so an agent could infer it is appropriate for general output validation against criteria. However, it provides no explicit guidance on when not to use it or what alternatives exist (e.g., check_hallucination_risk for specific hallucination checks). The context is implied rather than clearly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v0.1.3- First observed
check_hallucination_risk - First observed
check_scope_compliance - First observed
generate_quality_report - First observed
get_failure_patterns - First observed
log_validation - First observed
validate_output
TDQS
The tools are mostly distinct: validate_output provides general scoring, while check_hallucination_risk and check_scope_compliance target specific failure modes. There is slight overlap between validate_output's forbidden patterns and check_scope_compliance's allowed/forbidden topics, but the descriptions clarify different scopes.
All tool names follow a consistent verb_noun pattern (validate_output, get_failure_patterns, check_hallucination_risk, check_scope_compliance, log_validation, generate_quality_report), using lowercase with underscores throughout. This makes the API predictable and easy to navigate.
With 6 tools, the server is well-scoped for its purpose of validating agent output. Each tool covers a distinct step in the validation workflow: executing checks, analyzing patterns, logging results, and reporting, without unnecessary bloat.
The core workflow (validate, log, analyze, report) is covered. However, there is no tool to manage the configurable criteria mentioned in validate_output, which is a minor gap. Additionally, update/delete operations for logged results are missing, but the main lifecycle is intact.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Deterministic runtime safety for AI agents: scan PII, gate tool actions, verify LLM output.
- SpanlyOAuthcom.spanly
MCP observability. Query live traffic, errors, duration, and alerts from your AI agent.
Zero-secret MCP gateway for AI agents: risk-scored, audited calls with human-in-the-loop approval.
Preflight QA for AI-agent deliverables with structured verdicts and repair guidance.
Related MCP Servers
- AlicenseBqualityCmaintenancePre-execution governance for AI agents. 45 MCP tools for hold queues, audit trails, risk scoring, and policy enforcement. Validates agent actions before they execute.451181MIT
- AlicenseNot gradedqualityDmaintenanceRuntime safety guardrails for AI coding agents. Checks file access, validates shell commands, and scores your repo's AI safety — all via MCP.108MIT
- FlicenseNot gradedqualityBmaintenanceRuntime agent firewall for PII redaction, rate limits, and policy enforcement, enabling autonomous agent security via MCP integration.-
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enforces runtime governance on AI agent actions — file access, command execution, delegation chains, and permission escalation.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/mdfifty50-boop/qc-validator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server