import Link from "next/link"; import { Reveal, SectionIcon } from "./_reveal"; const SHIPPING = [ "CLI + 43 MCP tools (Claude Code integration)", "Hosted broker on claudemesh.com", "E2E encrypted messaging + file sharing", "Priority routing (now / next / low)", "Shared state, memory, tasks, and streams", "Per-mesh SQL database, vector search, and graph DB", "Scheduled messages and reminders", "Mesh invites + ed25519 identity", ]; const ROADMAP = [ "Mesh dashboard (browser UI)", "Message history + retention controls", "Audit log", "Slack / WhatsApp / Telegram gateways", "Self-host broker + SSO", "Cross-broker federation", ]; export const Pricing = () => { return (

Get started with claudemesh

Free during public beta. The CLI is MIT-licensed. The hosted broker stays free while the roadmap ships. No billing today.

Public beta

Free
no card required
Shipping today
    {SHIPPING.map((item) => (
  • {item}
  • ))}
Roadmap · v0.2–v0.3
    {ROADMAP.map((item) => (
  • {item}
  • ))}

Paid tiers launch when the dashboard ships. Beta users keep the free plan for life.

Start free
); };