streamable-httpMITupdated 2mo ago
This repo is the source of truth for mumo's MCP client SKILL.md content. It is not a client package ā no end user installs from here directly. Per-client packages live in sibling repos (see below), and each is rendered from this baseline by the build script in scripts/.
What can you do with mumo?
mumo-mcp ā canonical baseline for mumo MCP client packages
This repo is the source of truth for mumo's MCP client SKILL.md content. It is not a client package ā no end user installs from here directly. Per-client packages live in sibling repos (see below), and each is rendered from this baseline by the build script in scripts/.
mumo runs multi-model deliberations across Claude, GPT, Gemini, Grok, Qwen, GLM, and Kimi in parallel. Use it for contested decisions ā architecture, plan review, strategy ā where a single model might be confidently wrong. The mumo MCP server lives at https://mumo.chat/api/mcp and exposes create_deliberation, wait_for_round, append_round, get_session, list_sessions, list_models, get_credit.
Install (end users)
Pick the package for your host:
| Host | Install page | Repo |
|---|---|---|
| Claude Code | https://mumo.chat/install/claude-code | mumo-chat/mumo-claude |
| Codex | https://mumo.chat/install/codex | mumo-chat/mumo-codex |
| Cursor | https://mumo.chat/install/cursor | mumo-chat/mumo-cursor |
| VS Code (Copilot) | https://mumo.chat/install/vs-code | mumo-chat/mumo-vscode |
| Hermes Agent | https://mumo.chat/install/hermes | mumo-chat/mumo-hermes |
| OpenClaw | https://mumo.chat/install/openclaw | mumo-chat/mumo-openclaw |
API keys: sign up at https://mumo.chat and create a platform key at Settings ā API Keys (keys start with mmo_live_).
Repo contents
skills/mumo/
āāā SKILL.template.md # tokenized baseline (the source of truth)
āāā playbooks/ # shared cognitive-shape playbooks
āāā references/ # shared reference docs (claim maps, snippets, takeaway, etc.)
scripts/
āāā build-skill.js # renderer: template + per-client overlay -> client SKILL.md
āāā README.md # how the build system works
āāā clients/ # per-client configs + Setup/Frontmatter partials
The template uses {{TOKEN}} markers for per-client substitution points (application name, moderator example, install URL, tool-naming registry note, etc.). Each scripts/clients/<client>.json fills them in.
Building
node scripts/build-skill.js # render to all six sibling client repos
node scripts/build-skill.js --target <client> # render one
node scripts/build-skill.js --verify-all # check for drift across all six (use in CI)
See scripts/README.md for details (token reference, adding a new client, etc.).
Editing
- Shared kernel changes ā edit
skills/mumo/SKILL.template.md. Re-render to propagate. - Per-client overlay changes (
## Setupbody, frontmatter, application name, moderator example, install URL, tool-naming note) ā editscripts/clients/<client>/partials orscripts/clients/<client>.jsontokens. Re-render. - Shared playbooks / references ā edit
skills/mumo/playbooks/orskills/mumo/references/. Currently propagated manually; build-system handling is a follow-up.
Architecture
The shared-sections + per-client-overlay model is documented in docs/MCP_CLIENTS.md in the main mumo repo. The 2026-05-20 audit at docs/audits/2026-05-20-mcp-skill-delta.md enumerates exactly which sections are shared vs. per-client.
Links
- Product ā https://mumo.chat
- MCP reference ā https://mumo.chat/docs/mcp
- REST API ā https://mumo.chat/docs/api
- Issues ā https://github.com/mumo-chat/mumo-mcp/issues
License
MIT
Install
Add mumo to your client. Pick the one you use.
claude mcp add --transport http mumo https://mumo.chat/api/mcpcodex mcp add mumo --url https://mumo.chat/api/mcp{
"mcpServers": {
"mumo": {
"url": "https://mumo.chat/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"mumo": {
"type": "http",
"url": "https://mumo.chat/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"mumo": {
"url": "https://mumo.chat/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mumo": {
"serverUrl": "https://mumo.chat/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance16/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 52 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Apr 22, 2026 |