nexus-convergence-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., "@nexus-convergence-mcpconverge query: Is this drug safe? Models: gpt-4o, claude-3, gemini"
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.
nexus-convergence-mcp
MCP server wrapping the Balanced Intelligence Convergence Pipeline.
Exposes the full pipeline as 4 MCP tools usable by any MCP-compatible client (Claude Code, Claude Desktop, etc.).
Tools
converge_query
Fan out a query to multiple LLMs, run consensus, return structured result.
{
"query": "Is this treatment effective?",
"models": ["gpt-4o", "claude-3-5-sonnet-20241022", "gemini-1.5-pro"],
"policy_set": "hipaa"
}Returns: run_id, agreement_score, stability, agreed_claims, disputed_claims, final_answer.
get_evidence_ladder
Return the full Evidence Ladder for a query — immutable audit trail of every pipeline step.
{ "query_id": "run-uuid" }Returns: ordered list of entries from QUERY → DECOMPOSE → MODEL_EXECUTE → CONSENSUS → VERIFY → CONCLUDE.
check_compliance
Check content against HIPAA/EU_AI_ACT/NIST/CUSTOM policies.
{
"content": "Patient SSN is 123-45-6789",
"categories": ["HIPAA"]
}Returns: passed, blocked, violations, warnings, logs.
list_model_disagreements
Return where models diverged — inversions (direct contradictions), disputed claims, low-similarity pairs.
{ "query_id": "run-uuid" }Returns: inversions, disputed_claims, low_similarity_pairs.
Related MCP server: cloud-chat-assistant
MCP configuration
Add to your MCP config:
{
"mcpServers": {
"nexus-convergence": {
"command": "npx",
"args": ["-y", "@gonzih/nexus-convergence-mcp"],
"env": {
"CONVERGENCE_SERVICE_URL": "http://your-convergence-service:3000",
"CONSENSUS_SERVICE_URL": "http://your-consensus-service:3001",
"EVIDENCE_SERVICE_URL": "http://your-evidence-service:3002",
"COMPLIANCE_SERVICE_URL": "http://your-compliance-service:3003",
"NEXUS_API_KEY": "your-api-key"
}
}
}
}Environment
CONVERGENCE_SERVICE_URL=http://localhost:3000
CONSENSUS_SERVICE_URL=http://localhost:3001
EVIDENCE_SERVICE_URL=http://localhost:3002
COMPLIANCE_SERVICE_URL=http://localhost:3003
NEXUS_API_KEY=your-api-keyDevelopment
npm ci
npm run build
npm start
npm testMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceAn MCP server that enables users to query, compare, and synthesize responses from multiple local and cloud LLMs simultaneously using existing subscriptions. It provides tools for parallel model evaluation, consensus polling with an LLM-as-judge, and response synthesis across different model providers.Last updated83215MIT
- Flicense-qualityDmaintenanceMulti-cloud MCP server that exposes cloud AI models as tools for AI CLI agents, supporting streaming, conversation history, parallel multi-model queries, and dynamic model discovery.Last updated2
- Alicense-qualityBmaintenanceEnables multi-model leader-worker agent orchestration, workflow execution, and deterministic validation via structured MCP tools.Last updated13Apache 2.0
- Alicense-qualityBmaintenanceExposes RAG and document intelligence pipelines as 8 composable tools for MCP-compatible clients, enabling querying, indexing, classifying, extracting, and assessing documents.Last updated1MIT
Related MCP Connectors
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
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/Gonzih/nexus-convergence-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server