claude mcp add meshes npx -y @mesheshq/mcp-server \
-e MESHES_ACCESS_KEY=your_access_key \
-e MESHES_SECRET_KEY=your_secret_key \
-e MESHES_ORG_ID=your_organization_uuid"Write a Node.js script to backfill our users into Meshes"
"Audit our existing webhooks and migrate them to Meshes rules"
"Show me the schema for a "subscription.canceled" event"
$ claude "Write a function to send a slack alert when a high value plan is created"
// Generated by Claude Code
import meshes from "@mesheshq/events";
export async function alertSalesTeam(company, value) {
if (value > 1000) {
await meshes.emit("enterprise.lead", {
company,
value
});
}
}Claude Code connects to Meshes via MCP to emit events, inspect deliveries, and manage workspace rules — all from the terminal. Meshes handles routing and guaranteed delivery to every connected destination.
Meshes handles the last mile — reliable event delivery to every tool in your stack.
Free tier includes 100 events/month. Start in under 2 minutes.