Install
$ agentstack add mcp-ojaskord-quantum-suitability-validator-mcp-server ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v1.0.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v1.0.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
[](https://smithery.ai/servers/OjasKord/quantum-suitability-validator-mcp-server)
Quantum Suitability Validator MCP
[](https://toolrank.dev/ranking)
MCP server that screens quantum computing POC proposals against expert decision rules -- before your agent escalates any initiative to a committee, allocates budget, or routes to a specialist.
What it does
Enterprise innovation agents and R&D workflow agents process backlogs of proposed technology initiatives tagged as potential quantum computing candidates. Before escalating any candidate to a human committee, allocating POC budget, or routing to a quantum specialist, the agent calls quantum_assess_problem to produce an auditable triage verdict.
This server is refusal-first by design. It downgrades or refuses more often than it approves. Every verdict is auditable and machine-readable.
Tools
quantum_assess_problem (Free: 5/month, no key required)
Screens a quantum computing proposal using an expert-validated four-dimensional scoring framework. Returns:
verdict: SCIENTIFICALLYRECOMMENDEDNOW | COMMERCIALLYRECOMMENDEDNOW | INVESTIGATEFURTHER | PREMATURE | NOTQUANTUM_AMENABLEfour_scores: scientificfit (40% weight), hardwarefeasibility (25%), advantagepotential (25%), commercialrelevance (10%), composite -- four independent 0.0-1.0 scores so a scientifically valid investigation is never confused with proven commercial advantageadvantage_claim_level: NONE | HYPOTHESISED | EXPERIMENTALSIGNAL | BENCHMARKSUPPORTED | PRODUCTION_VALIDATEDsuitability_score: 0.0-1.0 (equal to four_scores.composite)confidence_score: 0.0-1.0problem_class: combinatorialoptimisation | portfoliooptimisation | molecularsimulation | mlkernel | cryptographypqc | samplingmonte_carlo | otherdominant_blockers: specific reasons why the problem fails screeninghype_flags: detected hype language patternsbaseline_question: always "What is your classical baseline today, and what metric must improve for this to matter?"next_best_action: specific actionable recommendationagent_action: ESCALATETOPOC | ROUTETOSIMULATOR | DEFINEBASELINEFIRST | REJECT | REQUESTMOREINFORMATION
quantum_readiness_report (Pro only)
Full auditable Quantum Readiness Report, weighted by audience profile (RESEARCH, ENTERPRISE, or INVESTOR -- the same problem legitimately scores differently by profile). Everything from quantum_assess_problem plus:
recommended_workflow: CLASSICALONLY | HYBRID | SIMULATORONLY | ANNEALINGPATH | GATEMODELVARIATIONAL | INSUFFICIENTINFORMATIONformulation_guidance: QUBO/Ising/variational suitability, estimated binary variables, penalty dominance riskhardware_recommendations: hardware family fit scores with access routes (D-Wave Leap, IBM Cloud, IonQ Cloud)error_budget_assessment: viability against current noise floorsclassical_baseline_assessment: baseline strength and minimum benchmark requirementvalidation_plan: ordered steps for technical review board submissionrefusal_reason: populated when the report declines to recommend a path forwardcommercial_reality_statement: populated for ENTERPRISE and INVESTOR profiles -- states plainly that production advantage over classical has not yet been broadly demonstrated
Connect
HTTP (Railway -- no install)
{"type": "http", "url": "https://quantum-suitability-validator-mcp-production.up.railway.app"}
stdio (npm -- requires ANTHROPICAPIKEY)
npx quantum-suitability-validator-mcp
Harness Integration
Note: this server exposes tools at /mcp not the root URL.
Claude Code / Claude Desktop (.mcp.json)
{
"mcpServers": {
"quantum-suitability-validator": {
"type": "http",
"url": "https://quantum-suitability-validator-mcp-production.up.railway.app/mcp"
}
}
}
LangChain (Python)
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"quantum-suitability-validator": {
"url": "https://quantum-suitability-validator-mcp-production.up.railway.app/mcp",
"transport": "http"
}
})
tools = await client.get_tools()
OpenAI Agents SDK (Python)
from agents import Agent, HostedMCPTool
agent = Agent(
name="Assistant",
tools=[HostedMCPTool(tool_config={
"type": "mcp",
"server_label": "quantum-suitability-validator",
"server_url": "https://quantum-suitability-validator-mcp-production.up.railway.app/mcp",
"require_approval": "never"
})]
)
LangGraph
Same as LangChain above — langchain-mcp-adapters works with LangGraph natively.
Pricing
- Free: 5
quantum_assess_problemcalls/month per IP -- no API key required - Pro: $199/month -- unlimited
quantum_assess_problem+ fullquantum_readiness_report - Enterprise: $499/month -- volume + SLA
Upgrade: kordagencies.com
Legal
AI-assisted triage -- NOT a substitute for experimental physicist review. Results are for informational and planning purposes only and do not constitute expert quantum computing advice. Full terms: kordagencies.com/terms.html
Kord Agencies Pte Ltd, Singapore
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: OjasKord
- Source: OjasKord/quantum-suitability-validator-mcp-server
- License: MIT
- Homepage: https://kordagencies.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v1.0.0 Imported from the upstream source.