Skip to main content
Glama

Swiss Truth MCP

AI 에이전트를 위한 검증된 지식 인프라 — 환각이 아닌 인증된 사실.

MCP Domains Claims Languages EU AI Act Auth LangChain CrewAI AutoGen

Swiss Truth은 AI 에이전트를 위해 특별히 구축된 인간 + AI 검증 지식 베이스입니다. 모든 사실은 5단계 검증 파이프라인을 통과하며, 신뢰도 점수, 검증된 출처 URL, SHA256 무결성 해시를 포함합니다. 30초 만에 연결하세요. API 키가 필요하지 않습니다.


에이전트가 Swiss Truth를 사용하는 이유

문제

Swiss Truth 도구

🧠 사실 질문에 대한 LLM 환각

search_knowledge — 2000개 이상의 인증된 사실, 30개 도메인

📎 출처 인용 불가 또는 인용 검증 불가

get_citations — 검증된 URL이 포함된 인라인 + APA 인용

⏰ 빠르게 변화하는 주제에 대한 오래된 학습 데이터

check_freshness — 오래된 사실 감지

⚖️ 규제 도메인에서의 규정 미준수 응답

check_regulatory_compliance — FINMA, BAG, GDPR, EU AI Act

✅ 응답 전 여러 주장 검증

verify_claims_batch — 최대 20개 주장을 병렬로 검증

🔍 전체 응답 환각 위험

verify_response — 낮음 / 중간 / 높음 위험 점수


Related MCP server: verification-mcp

빠른 설정

MCP (Claude Desktop, Cursor, Windsurf, 모든 MCP 클라이언트)

{
  "mcpServers": {
    "swiss-truth": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://swisstruth.org/mcp"]
    }
  }
}

또는 HTTP를 통한 직접 연결:

{
  "mcpServers": {
    "swiss-truth": {
      "type": "http",
      "url": "https://swisstruth.org/mcp"
    }
  }
}

LangChain

pip install swiss-truth-langchain
from swiss_truth_langchain import SwissTruthToolkit

toolkit = SwissTruthToolkit()
tools = toolkit.get_tools()  # search, verify, batch verify, citations, freshness, compliance

CrewAI

pip install swiss-truth-crewai
from swiss_truth_crewai import SwissTruthSearchTool, SwissTruthVerifyTool
from crewai import Agent

researcher = Agent(
    role="Research Agent",
    tools=[SwissTruthSearchTool(), SwissTruthVerifyTool()]
)

AutoGen

pip install swiss-truth-autogen
from swiss_truth_autogen import register_swiss_truth_functions

register_swiss_truth_functions(assistant, user_proxy)
# Adds: search_knowledge, verify_claim, verify_claims_batch, get_knowledge_brief

OpenAI 함수 호출

import requests

tools = requests.get("https://swisstruth.org/openai-tools.json").json()
# Ready-to-use tool definitions for OpenAI API, LlamaIndex, etc.

14개의 MCP 도구

🔍 검색

도구

설명

search_knowledge

2000개 이상의 인증된 사실에 대한 의미론적 검색. 언어 자동 감지(DE/EN/FR/IT/ES/ZH/AR/RU/JA/KO). 신뢰도 점수, 출처 URL, SHA256 해시 반환.

get_claim

단일 주장에 대한 전체 출처: 검증자, 기관, 검토 날짜, SHA256.

get_knowledge_brief

RAG 파이프라인에 최적화된 구조화되고 인용 가능한 지식 요약.

list_domains

인증된 주장 수가 포함된 30개의 모든 지식 도메인 탐색.

✅ 검증

도구

설명

verify_claim

진술 사실 확인: 신뢰도 + 증거와 함께 supported(지원됨) / contradicted(반박됨) / unknown(알 수 없음) 반환.

verify_claims_batch

최대 20개의 주장을 병렬로 검증. 주장별 판결 + 요약 반환.

verify_response

전체 AI 응답의 환각 위험 확인: low(낮음) / medium(중간) / high(높음).

find_contradictions

진술과 모순되는 모든 인증된 주장 찾기.

📎 인용 및 품질

도구

설명

get_citations

검증된 출처 URL이 포함된 적절한 형식의 인라인 + APA 인용.

check_freshness

오래된 학습 데이터 감지. current(최신) / changed(변경됨) / unknown(알 수 없음) 반환.

check_regulatory_compliance

스위스/EU 규정 준수 확인 (FINMA, BAG, GDPR, EU AI Act).

📥 기여 및 피드백

도구

설명

submit_claim

전문가 검토를 위해 누락된 사실 제출. AI 사전 심사 + URL 검증 트리거.

get_claim_status

검토 파이프라인 추적: draft(초안) → peer_review(동료 검토) → certified(인증됨).

report_agent_need

누락된 도메인 또는 기능 보고 — 피드백이 로드맵을 결정합니다.


30개의 지식 도메인

🇨🇭 스위스 (11): swiss-health · swiss-law · swiss-finance · swiss-education · swiss-energy · swiss-transport · swiss-politics · swiss-agriculture · swiss-digital · swiss-environment · labor-employment

🇪🇺 EU 및 글로벌 (6): eu-law · eu-health · global-science · international-law · economics · us-law

🔬 과학 및 기술 (8): ai-ml · ai-safety · quantum-computing · cybersecurity · biotech · renewable-energy · space-science · blockchain-crypto

🌍 일반 (5): climate · world-science · world-history · mental-health · nutrition-food


에이전트 페르소나

에이전트 유형

주요 도구

사용 사례

연구 에이전트

search_knowledge, get_knowledge_brief, get_citations

검증된 사실에 기반한 연구

법률 준수

search_knowledge, check_regulatory_compliance, verify_claim

FINMA, BAG, GDPR, EU AI Act

RAG 파이프라인

get_knowledge_brief, search_knowledge, get_citations

검증된 사실로 검색 강화

사실 확인

verify_claim, verify_claims_batch, verify_response

환각 방지

건강 자문

search_knowledge, check_regulatory_compliance, check_freshness

KVG, Krankenkasse, Swissmedic

금융 에이전트

search_knowledge, check_regulatory_compliance, verify_claim

FINMA 준수 정보


검색 엔드포인트

Swiss Truth는 표준 엔드포인트를 통해 에이전트와 크롤러가 검색할 수 있습니다:

엔드포인트

표준

목적

/.well-known/mcp.json

RFC 8615

MCP 자동 검색

/.well-known/ai-plugin.json

OpenAI

GPT / Assistants API 통합

/agents.json

Swiss Truth

에이전트 기능 매니페스트

/llms.txt

llmstxt.org

LLM 크롤러 검색

/openai-tools.json

OpenAI

함수 호출 도구 정의


검증 파이프라인

모든 주장은 인증 전 5단계 파이프라인을 통과합니다:

Submit → AI Pre-Screen → URL Verification → Expert Review → Peer Review → Certified ✓
  • SHA256 무결성 해시 — 변조 감지

  • 블록체인 앵커링 — 매주 온체인 Merkle 루트 생성

  • 신뢰도 점수 — 다차원 품질 점수

  • 자동 갱신 — 만료된 주장은 매일 재검증

  • EU AI Act 준수 — 전체 감사 추적


지식 통계

지표

인증된 주장

2000+

도메인

30

언어

10

검증 단계

5

인간 검증

SHA256 무결성

블록체인 앵커링

EU AI Act 준수

API 키 필요


예시 쿼리

"Is health insurance mandatory in Switzerland?"
"What does the EU AI Act require for high-risk AI systems?"
"How does RAG reduce LLM hallucinations?"
"What are the FINMA regulations for crypto assets?"
"What is the current status of quantum error correction?"
"How does Swiss mandatory health insurance work?"

링크

  • 🌐 웹사이트: swisstruth.org

  • 📊 신뢰 및 통계: swisstruth.org/trust

  • 🔌 MCP 엔드포인트: https://swisstruth.org/mcp

  • 📦 npm 패키지: npx -y mcp-remote https://swisstruth.org/mcp

  • 🐍 PyPI LangChain: pip install swiss-truth-langchain

  • 🐍 PyPI CrewAI: pip install swiss-truth-crewai

  • 🐍 PyPI AutoGen: pip install swiss-truth-autogen

A
license - permissive license
Not graded
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    A
    quality
    B
    maintenance
    Search 1,500+ pre-verified, cited knowledge units across 16 domains. 6 tools: query, batch query, get unit, list domains, suggest topics, report issues. Free, no API key required.
    6
    237
    1
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to fact-check claims, verify citations, and check source freshness using Wikipedia, Wikidata, Crossref, and Wayback Machine.
    1
  • A
    license
    A
    quality
    B
    maintenance
    The deterministic fact-verification layer for AI agents. Validates the structured facts an agent emits — IBANs, payment cards, VAT and national tax IDs, crypto and bank addresses, domains, emails, phone numbers, securities and academic identifiers, plus dates, currencies and holidays — against checksums and curated authoritative data, not guesses.
    56
    1
    Apache 2.0
  • A
    license
    A
    quality
    A
    maintenance
    Licensed, rights-cleared content for AI agents, 17 tools to discover, license, retrieve, and verify expert content with on-chain proof and EU AI Act Article 53 support.
    8
    391
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Verified, sourced, real-time intelligence layer for AI agents.

  • Real-time fact-check, citation verification, and source-freshness for AI agents.

  • Verified, citable German & EU law for any LLM. Daily updates from official sources, hosted in DE.

View all MCP Connectors

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/swisstruthorg/swiss-truth-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server