@three-ws/clash-mcp
v0.1.1
Published
Play three.ws Coin Clash — the community faction war backed by real holdings + pump.fun data — from any AI agent. Read the live battle board and leaderboard (public), or enlist your wallet and rally power for a faction (Solana-signed writes).
Maintainers
Readme
A Model Context Protocol server that puts Coin Clash — three.ws's community faction war — in reach of any AI agent over stdio. Every community is a faction, its holders are its army; two factions are matched each round, and whichever army rallies more power before the clock runs out wins. Read the live board and leaderboard, then enlist (prove you hold the coin) and rally for your side.
Reads are public — point THREE_WS_BASE at a deployment and go. Writes are wallet-scoped: enlisting signs a challenge with your Solana key and the backend confirms a live on-chain holding of the faction coin before issuing a war pass. Factions, members, and momentum come from CoinCommunities + pump.fun; rally power is persisted and ranked server-side. Nothing is mocked.
Install
npm install @three-ws/clash-mcpOr run with npx (no install):
npx @three-ws/clash-mcpQuick start
Claude Code, one line:
claude mcp add clash -- npx -y @three-ws/clash-mcpClaude Desktop / Cursor (claude_desktop_config.json or mcp.json):
{
"mcpServers": {
"clash": {
"command": "npx",
"args": ["-y", "@three-ws/clash-mcp"],
"env": {
"SOLANA_SECRET_KEY": "<base58 secret of your enlisting wallet — only needed for writes>"
}
}
}
}Inspect the surface with the MCP Inspector:
npx -y @modelcontextprotocol/inspector npx @three-ws/clash-mcpTools
| Tool | Type | What it does |
| ----------------------- | --------- | ----------------------------------------------------------------------------------------------------------------- |
| get_clash_state | read-only | The live battle board: matchups, each army's power + momentum, the round clock, the tug-of-war share, who's leading. |
| get_clash_leaderboard | read-only | All-time faction war records (W/L/D, win rate, power), optionally a single faction's top soldiers this round. |
| enlist_faction | write | Prove the signer's wallet holds a faction coin (Solana-signed) and get a war pass. |
| rally_faction | write | Spend taps as battle power for your faction — pass a war pass, or a token to auto-enlist and rally in one call. |
The reads return live data — power and standings move between calls, so neither is idempotent. The writes are wallet-scoped: no funds ever move (a war pass is a signed proof, not a transaction), so neither is destructive. enlist_faction is idempotent (re-enlisting mints an equivalent pass); rally_faction is not (each call appends power).
Input parameters
get_clash_state — none.
get_clash_leaderboard — faction (optional mint; also returns that faction's top soldiers this round).
enlist_faction — token (required faction mint), secret (optional base58 Solana secret; falls back to SOLANA_SECRET_KEY).
rally_faction — taps (required, 1–50), and either pass (a war pass from enlist_faction) or token (+ optional secret) to auto-enlist first.
How a battle works
- Scout.
get_clash_stateshows the current round: who's matched, each army's power, momentum, andmsLeft. - Enlist.
enlist_factionissues a challenge bound to your wallet + faction, signs it with your Solana key, and the backend verifies the signature and a live on-chain holding of the coin. You get back awarPass. (No holding →eligible:false,reason:"not_a_holder".) - Rally.
rally_factionspendstaps(1–50 per call) from the pass as battle power — multiplied by the faction's live momentum, capped per wallet per round. Call it repeatedly whilemsLeft > 0. - Win. When the round clock hits zero, the army with more power takes the battle and the result is written to each faction's all-time war record (
get_clash_leaderboard).
Example
// get_clash_state
> {}
{
"ok": true,
"epoch": 486231,
"msLeft": 1843000,
"factionCount": 16,
"arena": [
{
"id": "486231:…",
"a": { "token": "…", "symbol": "ALPHA", "members": 8200, "momentum": 1.31, "power": 940, "record": { "w": 12, "l": 4, "d": 1 } },
"b": { "token": "…", "symbol": "BETA", "members": 5100, "momentum": 1.12, "power": 610, "record": { "w": 7, "l": 9, "d": 0 } },
"aShare": 0.61,
"leader": "…ALPHA mint…"
}
],
"bye": null
}// rally_faction — auto-enlist + rally in one call (wallet must hold the coin)
> { "token": "…faction mint…", "taps": 50 }
{
"ok": true,
"enlisted": { "wallet": "…", "amount": 1250000, "usd": 84.20 },
"epoch": 486231,
"mint": "…faction mint…",
"added": 65,
"momentum": 1.31,
"walletPower": 65,
"walletCap": 5000,
"capped": false,
"factionPower": 1005,
"msLeft": 1841000
}Requirements
- Node.js >= 20.
- Network access to
https://three.ws(or your ownTHREE_WS_BASE). - For writes only: a base58 Solana secret whose wallet holds the faction coin it enlists for, via
SOLANA_SECRET_KEYor the per-callsecretarg.
Environment variables
| Variable | Required | Default | Notes |
| --------------------- | ------------------ | ------------------ | --------------------------------------------------------------------- |
| THREE_WS_BASE | no | https://three.ws | API deployment to talk to. |
| THREE_WS_TIMEOUT_MS | no | 20000 | Per-request timeout. |
| SOLANA_SECRET_KEY | writes only | — | Base58 secret of the enlisting wallet. Per-call secret overrides it. Treat like cash. |
The
secretis only ever used to sign the enlist challenge locally — a detached ed25519 signature over the challenge text. It never signs a transaction and no funds move. Still, it controls a wallet: prefer a per-callsecretor a dedicated env on a machine you trust.
Links
- Homepage: https://three.ws
- Changelog: https://three.ws/changelog
- Issues: https://github.com/nirholas/three.ws/issues
- License: Apache-2.0 — see LICENSE
