nexus-convergence-mcp
nexus-convergence-mcp
Balanced Intelligence Convergence Pipeline을 래핑하는 MCP 서버입니다.
전체 파이프라인을 모든 MCP 호환 클라이언트(Claude Code, Claude Desktop 등)에서 사용할 수 있는 4개의 MCP 도구로 노출합니다.
도구
converge_query
쿼리를 여러 LLM으로 팬아웃하고, 합의를 실행하며, 구조화된 결과를 반환합니다.
{
"query": "Is this treatment effective?",
"models": ["gpt-4o", "claude-3-5-sonnet-20241022", "gemini-1.5-pro"],
"policy_set": "hipaa"
}반환값: run_id, agreement_score, stability, agreed_claims, disputed_claims, final_answer.
get_evidence_ladder
쿼리에 대한 전체 증거 사다리(Evidence Ladder)를 반환합니다 — 모든 파이프라인 단계의 변경 불가능한 감사 추적입니다.
{ "query_id": "run-uuid" }반환값: QUERY → DECOMPOSE → MODEL_EXECUTE → CONSENSUS → VERIFY → CONCLUDE에서 항목의 순서가 지정된 목록.
check_compliance
HIPAA/EU_AI_ACT/NIST/CUSTOM 정책에 따라 콘텐츠를 확인합니다.
{
"content": "Patient SSN is 123-45-6789",
"categories": ["HIPAA"]
}반환값: passed, blocked, violations, warnings, logs.
list_model_disagreements
모델이 어디에서 갈라졌는지 반환합니다 — 반전(직접적인 모순), 논쟁의 여지가 있는 주장, 낮은 유사성 쌍.
{ "query_id": "run-uuid" }반환값: inversions, disputed_claims, low_similarity_pairs.
MCP 구성
MCP 구성에 추가하세요:
{
"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"
}
}
}
}환경
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개발
npm ci
npm run build
npm start
npm testResources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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