• Blog
  • Agents
  • Compare
  • Documentation
  • Pricing
  • FAQ
  • Contact
Sign InSign Up

A single, reliable layer for all your product's integrations - rules, routing, retries, and fan-out included.

© Copyright 2026 Meshes, Inc. All Rights Reserved.

About
  • Blog
  • Contact
  • FAQ
Product
  • Compare
  • Pricing
  • Status
Developers
  • Documentation
  • Agents
  • API Reference
  • MCP Server
  • llms.txt
Legal
  • Terms of Service
  • Privacy Policy
  • Acceptable Use Policy
  • Cookie Policy
AI-Native Infrastructure

Give your agents the toolsto route events everywhere.

MCP, SDKs, REST. No matter the interface, all you need is your Meshes credentials. Your AI agent sends one event — Meshes delivers it to HubSpot, Salesforce, Intercom, and every destination simultaneously, with retries and delivery guarantees built in.

MCP Server
SDKs
REST API
Get Started Free →Open llms.txt
Works with your favorite AI tools

AI Coding Agents

C

Cursor

The Meshes MCP server runs inside Cursor. Ask it to route events and it calls the API directly.

Learn more →
C

Claude Code

Build event routing workflows with Claude Code and Meshes to connect your app to any destination.

Learn more →
C

Codex

Point Codex at the Meshes docs to generate the full integration. Works with the API and SDKs.

Learn more →
G

Gemini

Scaffold event routing workflows with Gemini and deploy them with Meshes.

Learn more →
G

GitHub Copilot

Build and ship integration workflows with GitHub Copilot and Meshes.

Learn more →
W

Windsurf

Use the Meshes MCP server with Windsurf to generate and ship event workflows faster.

Learn more →

App Builders

L

Lovable

Add your Meshes API key to Lovable and apps built there can route events through it.

Learn more →
R

Replit

Add your Meshes publishable key to Replit and emit events from any app you build there.

Learn more →
B

Bolt

Wire Meshes into Bolt-generated apps. One publishable key, every integration handled.

Learn more →
How it works

One API call. Every destination. Guaranteed.

Your agent sends a single event to Meshes. We fan it out to every connected destination with retries, deduplication, and delivery logging.

01

Agent Sends Event

Your AI agent calls the Meshes API or MCP server with a product event.

meshes.emit("user.signup", {
  email: "jane@example.com",
  plan: "pro",
  source: "onboarding-agent"
})
02

Meshes Routes & Fans Out

Meshes delivers the event to every connected destination simultaneously — HubSpot, Salesforce, Mailchimp, and more.

user.signup{ email, plan }MHubSpotSalesforceMailchimpIntercom
03

Guaranteed Delivery

Automatic retries with exponential backoff. Idempotency keys prevent duplicates. Dead letter queues catch what retries can't. Your agent ships features, not retry logic.

503 HTTP
Attempt 1
→
429 HTTP
Attempt 2
→
200 OK
Attempt 3
Developer tools

Every interface your agent needs.

MCP Server

Model Context Protocol server for Cursor, Claude Code, Windsurf, and any MCP-compatible client.

npx -y @mesheshq/mcp-server
Documentation →

Cursor Rules

Project rules that teach Cursor how to integrate with the Meshes API correctly.

.cursor/rules/meshes.mdc
Documentation →

Node.js SDK

Type-safe event client and API client for Node.js and TypeScript.

npm install @mesheshq/events
GitHub Repo →

Go SDK

Generated from OpenAPI spec. Full API coverage.

go get github.com/mesheshq/go-meshes
GitHub Repo →

REST API

Direct HTTP access. OpenAPI spec available for code generation in any language.

curl -X POST https://api.meshes.io/api/v1/events
API Reference →

llms.txt

Machine-readable documentation index for LLMs. Point any AI at this URL for full Meshes context.

https://meshes.io/llms.txt
Open llms.txt →
The problem

Your AI agent is only as good as its integrations.

When your agent creates a user, that event needs to reach HubSpot, trigger a Mailchimp sequence, and update Salesforce — all reliably.

Without Meshes, your agent needs custom code for every destination, retry logic for every failure, and monitoring for every silent drop.

Meshes is the integration brain between your agent and the tools it talks to. One event in, guaranteed delivery everywhere.

Without Meshes
// AI generates messy retry and integration logic
try {
  await hubspot.contacts.create({ email, name });
} catch (e) {
  // TODO: implement backoff retry
  console.error("HubSpot failed", e);
}

try {
  await salesforce.create("Lead", { Email: email });
} catch (e) {
  // TODO: Add to local queue?
  console.error("SFDC failed", e);
}

// Mailchimp integration omitted for brevity...
With Meshes
import meshes from "@mesheshq/events";

await meshes.emit("user.created", {
  email: newUser.email,
  name: newUser.name,
  traits: { source: "agent-onboarding" }
});
// Handled. Meshes delivers 100% reliably.

Make Your Agents Integration-Ready.

Meshes handles the last mile — reliable event delivery to every tool in your stack.

Start Free →Read the Docs

Free tier includes 100 events/month. Start in under 2 minutes.