jasswiki-mcp
Provides AI assistants with access to an official, cryptographically attested knowledge base of Swiss Jass (230+ articles on rules, variants, terminology, history, and tactics).
README
JassWiki MCP — Authority-Attested Knowledge Server for Swiss Jass
Erste vom Schweizer Jassverband (JVS) attestierte MCP-Quelle. Kryptographisch verifizierbar via
did:web:jassverband.ch.
JassWiki MCP gibt KI-Assistenten (Claude, ChatGPT-Connectors, Perplexity, Gemini Agentspace) direkten Zugriff auf die offizielle Schweizer Jass-Wissensbasis: 230+ kuratierte Artikel zu Regeln, Spielvarianten, Terminologie, Geschichte und Taktik. Inhalte sind durch den Jassverband Schweiz (Wikidata: Q139042763) als offizielle Wissens-Quelle attestiert.
This is the first production deployment of the AMCP v0.1 specification, developed by Agentic Relations (Architect: Remo Prinz). It demonstrates how organisations and federations can become cryptographically verifiable knowledge sources for AI agents — beyond traditional SEO and brand visibility.
Trust-Chain:
- 🇨🇭 Bundesamt für Kultur — Lebendige Tradition seit 2011
- 📖 Zitiert in deutschsprachigem Wikipedia-Artikel "Jass"
- 🆔 Wikidata: JassWiki Q137900251, Jass Q786768
- 🔐 Ed25519-signierte JVS-Attestation (detached signature)
Installation
Endpoint (Streamable HTTP): https://jasswiki.ch/mcp/http — no auth, no API key.
Claude (claude.ai / Desktop)
Settings → Connectors → Add custom connector → URL https://jasswiki.ch/mcp/http.
ChatGPT (Apps & Connectors)
Settings → Connectors → Add custom app/connector → URL https://jasswiki.ch/mcp/http (requires a paid plan; enable Developer Mode if needed).
Claude Code (CLI)
claude mcp add --transport http jasswiki https://jasswiki.ch/mcp/http
After connecting, the jasswiki server exposes three tools.
Reference URLs (any MCP-compatible client)
MCP Endpoint: https://jasswiki.ch/mcp/http (Streamable HTTP)
Health: https://jasswiki.ch/mcp/health
Manifest: https://jasswiki.ch/.well-known/mcp.json
Authority: https://jassverband.ch/.well-known/mcp-authority.json
DID Document: https://jassverband.ch/.well-known/did.json
Tools
show_jass_card(query)
Render an official branded JassWiki knowledge card (jasswiki.ch UI, via the MCP Apps extension / SEP-1865) for a Swiss Jass term, rule, variant or question — with definition, category, related terms and source link. This is the default answer path in hosts that support MCP Apps.
Example:
show_jass_card(query="Karte fällt runter")
search_jass_knowledge(query, limit?)
Semantic search across the official JassWiki encyclopedia (230+ articles, Pinecone-backed with keyword fallback). Understands natural-language questions. Returns matching titles, IDs, URLs, and content excerpts.
Example:
search_jass_knowledge(query="Was gilt, wenn eine Karte runterfällt?", limit=3)
get_term_details(id)
Retrieve the full official rule or definition for a specific term ID. Use after search_jass_knowledge for verification of exact wording.
Example:
get_term_details(id="schieber")
Example Conversations
Rule clarification:
User: "What are the official rules for Schieber-Jass?" AI: [calls
search_jass_knowledge] → Returns the canonical Schieber-rules sourced from JassWiki.ch with authority footer.
Variant lookup:
User: "Difference between Coiffeur-Schieber and Differenzler?" AI: [calls
search_jass_knowledgefor both] → Returns comparison sourced from official terminology.
Tactical reference:
User: "Welche Verwerfen-Konventionen gibt es im Schieber?" AI: [calls
search_jass_knowledge] → Returns tactical signaling conventions with citation.
Verifying the Authority Attestation (W3C Verifiable Credential)
The JassWiki MCP server is the first MCP service in Switzerland with cryptographically verifiable authority attestation, expressed as a W3C Verifiable Credential (Data Model 2.0) signed with the eddsa-jcs-2022 cryptosuite. Any standard W3C VC verification library can confirm it.
Quick verify with any W3C VC library
The attestation document is a self-contained Verifiable Credential — fetch and verify in one step:
curl -s https://jassverband.ch/.well-known/mcp-authority.json
The proof.proofValue field contains the signature in multibase base58btc format. Use any of:
- Node.js:
@digitalbazaar/vc+@digitalbazaar/eddsa-jcs-2022-cryptosuite - TypeScript / Browser:
@veramo/credential-w3cwitheddsa-jcs-2022plugin - Python:
pyld+PyNaCl(manual JCS implementation, see below) - Rust:
ssicrate
Manual verification (Python, no W3C VC library required)
pip install pynacl base58
import json, hashlib, urllib.request
import nacl.signing, base58
# 1. Fetch the VC + DID document
vc = json.load(urllib.request.urlopen('https://jassverband.ch/.well-known/mcp-authority.json'))
did = json.load(urllib.request.urlopen('https://jassverband.ch/.well-known/did.json'))
# 2. Reconstruct the signed hash data per eddsa-jcs-2022
def jcs(obj):
return json.dumps(obj, sort_keys=True, separators=(',', ':'), ensure_ascii=False).encode('utf-8')
unsigned_doc = {k: v for k, v in vc.items() if k != 'proof'}
proof_config = {k: v for k, v in vc['proof'].items() if k != 'proofValue'}
doc_hash = hashlib.sha256(jcs(unsigned_doc)).digest()
proof_hash = hashlib.sha256(jcs(proof_config)).digest()
hash_data = proof_hash + doc_hash # W3C VC Data Integrity ordering
# 3. Decode signature from multibase base58btc
proof_value = vc['proof']['proofValue']
assert proof_value.startswith('z') # 'z' = base58btc multibase prefix
signature = base58.b58decode(proof_value[1:])
# 4. Decode public key from DID document
import base64
pub_jwk_x = did['verificationMethod'][0]['publicKeyJwk']['x']
public_key = base64.urlsafe_b64decode(pub_jwk_x + '==')
# 5. Verify
nacl.signing.VerifyKey(public_key).verify(hash_data, signature)
print('✓ W3C VC verified — JassWiki MCP is officially attested by Jassverband Schweiz')
The attestation is governed by JVS Vorstandsbeschluss 2026-06-10 (JVS-VS-2026-06-10-AMCP-01) — the signed board resolution PDF, whose SHA-256 digest is anchored in the credential's termsOfUse.digestSRI.
Specification: AMCP v0.1 (Authority-MCP)
JassWiki MCP is the first production implementation of AMCP v0.1 — An Applied Profile of W3C Verifiable Credentials and DID:web for MCP Server Authority Attestation.
AMCP is not a new standard — it is a thin profile that combines:
| Layer | Existing Standard |
|---|---|
| Identity of the authority | W3C DID Core (did:web method) |
| Cryptographic envelope | W3C Verifiable Credentials Data Model 2.0 |
| Signature suite | eddsa-jcs-2022 (Ed25519 + JCS canonicalization) |
| Entity descriptions | Schema.org + JSON-LD |
| Canonical entity IDs | Wikidata QIDs |
| Server protocol | Anthropic MCP |
| Discovery | HTTP Link header (RFC 8288) + .well-known/ |
The contribution of AMCP is the combination — specifying how an organisation declares its official MCP server with cryptographic proof, Wikidata-anchored entity references, and a verifiable trust chain.
Spec owner & architect: Agentic Relations — founder: Remo Prinz.
📄 Read the full specification: AMCP v0.1 Working Draft (3,600 words; canonical URL https://agenticrelations.ch/specs/amcp/v0.1)
The methodology applies to any organisation, federation, public-sector body, or association that wants to become a cryptographically verifiable knowledge source in the agentic web.
Feedback and adoption inquiries: open an issue or contact remo@agenticrelations.ch.
Operator & Authority
- MCP Operator: JassWiki (curator: Remo Prinz, remo@jassverband.ch)
- Attestor: Jassverband Schweiz (JVS) —
did:web:jassverband.ch - Co-Curator JassWiki: Fabian Cadonau (Trumpf-As.ch)
Data & Licensing
- Content: CC-BY-SA 4.0
- Bulk corpus: HuggingFace JassWiki/jasswiki-corpus (JSONL)
- SKOS Taxonomy: jasswiki.ch/dataset/taxonomie.jsonld
- Attestation documents (mcp.json, did.json, mcp-authority.json): CC0
Attribution must include the JassWiki.ch link and indicate any modifications.
Status & Reliability
- Production since: January 2026
- Hosting: Firebase Cloud Functions, region
us-central1(low-latency global) - Languages supported: German (primary), French, Italian, English (ongoing expansion)
- Uptime SLA: Best-effort (99.5%+ historical)
For service incidents or schema changes, watch the GitHub releases.
Contributing
JassWiki content is curated. To suggest factual corrections, terminology updates, or new variants:
- Open an issue on JassWiki GitHub (the public site repo)
- Or contact directly: remo@jassverband.ch
- New entries are reviewed by JVS (4-eyes principle) before publishing
The MCP server itself (this repository) accepts PRs for documentation improvements, examples, and submission metadata.
Erste öffentlich-rechtliche Authority-MCP der Schweiz. The first publicly attested MCP knowledge server in Switzerland.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。