nexus-convergence-mcp

nexus-convergence-mcp

Exposes the Balanced Intelligence Convergence Pipeline as MCP tools for multi-LLM query fan-out, consensus, evidence auditing, compliance checking, and disagreement analysis.

Category
Visit Server

README

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 QUERYDECOMPOSEMODEL_EXECUTECONSENSUSVERIFYCONCLUDE.

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.

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-key

Development

npm ci
npm run build
npm start
npm test

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured