MCP is an open standard, so the Sluice MCP server is not Claude-only. The hosted endpoint speaks Streamable HTTP and works with any MCP-compatible client.
Hosted endpoint (free on testnet):
https://sluice.unitynodes.com/mcp
The stdio server exposes 5 tools (subscribe_to_events, list_subscriptions,
cancel_subscription, recent_deliveries, sluice_sandbox_dispatch),
4 resources, 3 resource templates, and 2 prompts. The hosted HTTP endpoint
serves the 2 read-only feed tools (recent_deliveries, sluice_sandbox_dispatch)
plus the same resources and prompts; subscribe_to_events and
cancel_subscription sign with your Casper key, so they stay stdio-only.
claude mcp add --transport http sluice https://sluice.unitynodes.com/mcp{ "mcpServers": { "sluice": { "url": "https://sluice.unitynodes.com/mcp" } } }{ "mcpServers": { "sluice": { "serverUrl": "https://sluice.unitynodes.com/mcp" } } }{ "servers": { "sluice": { "type": "http", "url": "https://sluice.unitynodes.com/mcp" } } }{ "mcpServers": { "sluice": { "url": "https://sluice.unitynodes.com/mcp" } } }{ "mcpServers": { "sluice": { "command": "npx", "args": ["mcp-remote", "https://sluice.unitynodes.com/mcp"] } } }Build from source — @sluice/mcp isn't published to npm yet — with cd Sluice/mcp && npm ci && npm run build && npm link, then point any client's command transport at the linked sluice-mcp binary:
{ "mcpServers": { "sluice": { "command": "sluice-mcp" } } }After adding the server, restart the client. sluice should appear in its MCP
server list. The hosted endpoint carries the read-only tools; the signing tools need the local stdio server. Ask it: "show me the last 10 Sluice
deliveries."