add clawnch plugin#43
Conversation
Clawnch is a launchpad + token discovery surface on Base — indexes ~140k
tokens deployed via Clanker (through Clawnch and integrated platforms
like Moltbook, 4claw, Clawtomaton, and the clawmes Hermes Agent plugin).
The plugin exposes two complementary feeds:
* recent launches (newest first) via GET /api/launches
* top by 24h volume (with live price / mcap / volume / 24h change) via
GET /api/tokens?sort=volume&prices=1
Buys route through Base MCP's own swap tool — no Clawnch MCP server
required. Differentiates from Bankr's plugin by also providing the
volume-sorted surface and per-source filtering (clawmes / moltbook /
4claw / clawtomaton / moltx).
API:
* Base URL: https://www.clawn.ch
* GET /api/launches (list + filter + single-address lookup)
* GET /api/tokens?sort=volume&prices=1 (top by volume + live prices)
* 120 req/min/IP read throttle, 10min edge cache
* No auth required for any of the read endpoints used by this plugin
🟡 Heimdall Review Status
|
The upstream Clawnch plugin (originally read-only — discovery + buys via Base MCP's swap tool) now also documents the non-custodial deploy path that just shipped at https://www.clawn.ch/api/prepare/deploy. Adds a 100-line 'Launch flow (non-custodial)' section to the plugin that covers: * GET /api/prepare/deploy endpoint reference (query params, envelope response shape, error codes) * Orchestration: prepare -> send_calls -> approve -> poll * Burn-to-vault flow (claim 1-10% Clanker vault by burning CLAWNCH; server verifies the burn synchronously) * Example launch prompts No behavioral change to the existing discovery + buy flow — that's unchanged at the top of the plugin. The launch flow is additive. The endpoint is live in production today (smoke-tested against the Clanker factory at 0xE85A59c628F7d27878ACeB4bf3b35733630083a9), so landing this update before merge means agents will have the full flow available from day one.
|
Update: pushed a 114-line addition to the plugin spec for the non-custodial launch flow. What changed: added a "Launch flow (non-custodial)" section after the existing discovery + buy content. It documents Why ship the upstream update now: the endpoint is already live at No changes to the existing discovery + buy content. The new section is purely additive at the bottom of the plugin. Happy to split this into two PRs if you'd prefer to ship discovery-only first and the launch flow as a follow-up — let me know. |
|
Connect |
Summary
Adds a Clawnch skill plugin to
skills/base-mcp/plugins/clawnch.mdand lists it in the SKILL.md native-plugins table.Clawnch is a launchpad + token discovery surface on Base. It indexes ~140k tokens deployed via Clanker — through Clawnch directly and through integrated platforms (Moltbook, 4claw, Clawtomaton, and the clawmes Hermes Agent plugin) — and exposes two public read endpoints for discovery:
GET /api/launches— recent launches, newest first, filterable bysourceandagent. Supports single-address lookup via?address=....GET /api/tokens?sort=volume&prices=1— top tokens by 24h trading volume with live price / market cap / volume / 24h change.Buys route through Base MCP's own
swaptool — no Clawnch MCP server is required. The plugin is read-only against the public API.Differentiation vs. existing plugins
This is the closest sibling to the existing Bankr plugin (both are launch-discovery surfaces). What Clawnch adds on top:
/api/tokensendpoint exposes live price / mcap / volume / 24h change so the agent can answer "what's hot on Base right now?", not just "what just launched?"?source=clawmes|moltbook|4claw|clawtomaton|moltxso users can scope to a specific integration ("show me clawmes launches from the last hour")API readiness
s-maxage=600) on both/api/launchesand/api/tokensExample flows in the plugin spec
Disclosure
I work on the Clawnch launchpad (
clawnchdevis the project's bot account). Submitting under the same name so the plugin can be maintained alongside the underlying API.Files
skills/base-mcp/plugins/clawnch.md(382 lines, follows the published custom-plugins template + matches the structure of the existing Bankr plugin)skills/base-mcp/SKILL.md(one line — appends Clawnch to the native-plugins table after Bankr)