TL;DR
Merge.dev offers two products. The first is a unified API across HRIS, ATS, CRM, accounting, ticketing, file storage, and knowledge base. The second, Merge Agent Handler (launched October 2025), exposes pre-built tools to AI agents over MCP.
Both products accelerate integration work in narrow scenarios, but both lock you into pre-built integrations and offer no path for AI coding agents like Claude Code, Cursor, or Codex to build new connectors or tools for you. If your customers ask for custom fields, custom objects, deeper API access, more APIs than Merge supports, or your AI agents need custom tool calls, you will outgrow Merge quickly.
Top Merge.dev alternatives for 2026:
- Nango: Coding agents (Claude Code, Cursor, Codex) build and maintain your integrations on Nango’s runtime. The only platform here that covers both the Merge unified API and Merge Agent Handler use cases on a single stack.
- Apideck: A fixed, pre-built unified API across CRM, HRIS, accounting, file storage, and e-commerce. No customization, no code-first or AI coding agent path.
- Unified.to: A pre-built unified API with broad category coverage, including niches like messaging and source code repositories. Read-only access with limited observability, no customization, and no AI coding agent path.
- Kombo: A unified API focused on HR data: HRIS, payroll, ATS, LMS, and assessment. No self-serve signup (sales call required) and no AI coding agent path.

Why teams look for Merge.dev alternatives
Merge can be a good fit for teams that need a small number of fixed, unified API categories and are willing to live within Merge’s schema and roadmap. As soon as your integrations become a core product feature, cracks begin to show.
Drawbacks of Merge’s unified API
- The universal schema is too narrow. Merge maps every CRM, HRIS, or accounting system to a common data model that only contains fields most providers expose. On the Contact entity, Salesforce and HubSpot share roughly five common fields. Custom objects, custom fields, and provider-specific endpoints live outside the unified API.
- You cannot extend integrations. No way to fork a Merge connector, add a missing field, or add a new API yourself. You wait on Merge’s roadmap. See why B2B SaaS teams outgrow pre-built unified APIs.
- Sync-and-cache delays. Merge syncs data on a schedule and stores it in its own infrastructure. Real-time use cases (an AI agent that needs the freshest CRM record, an alert pipeline that fires on a closed deal) hit the sync interval as a floor.
- Linked-account pricing scales aggressively. Merge’s published Launch plan starts at $650/month for 10 production linked accounts and $65/account beyond that. One customer connecting three integrations counts as three linked accounts. See Merge’s pricing breakdown for the full math.
- Limited category coverage. Roughly 220 integrations across seven categories. Anything outside HRIS, ATS, CRM, accounting, ticketing, file storage, or knowledge base, you are on your own.
Drawbacks of Merge Agent Handler
Merge Agent Handler is a separate product from the unified API. It lets you compose pre-built tools into MCP servers that AI agents can call. It introduces its own set of tradeoffs.
- Small first-party catalog. The platform ships dozens of first-party connectors. To extend, you point your agents at public MCP servers, which adds reliability and security risk that the first-party tools do not have.
- No custom tool calls deployed to the platform. You cannot author an intent-shaped tool (a single
onboard-customerthat creates a Slack channel, invites users, and posts a welcome message) and deploy it to Merge’s runtime. You are stuck with the generic tool calls Merge ships, which inflates context size and hurts agent reliability. See how to build reliable tool calls for AI agents. - No data syncs or webhooks. Agent Handler is tool-call only. If your AI product also needs continuous syncs (for RAG pipelines), webhook ingestion, or polling triggers, you need a separate platform.
- No coding-agent build loop. Agent Handler does not ship a skill for Claude Code, Cursor, or Codex that lets a coding agent author and deploy a new tool. You build through Merge’s Connector Studio, not your repo.
Switching integration platforms after you have invested in one is painful: customer connections, auth flows, sync logic, and observability all need to be migrated. Picking a platform with these limits, even for an early prototype, makes that switch more expensive later.
Best Merge.dev alternatives
Nango
Overview
Nango is an agentic API integrations platform where coding agents build integrations. Engineers, or coding agents like Claude Code, Cursor, and Codex, write integrations as code in your repo. Nango’s cloud runtime runs them securely and at scale. Integrations cover API auth, tool calls, data syncs, webhooks, and unified APIs, all on the same platform.
Nango is open source, supports 700+ APIs across 30 categories, and is used in production by hundreds of fast-growing SaaS and AI companies.

Best for
Teams whose integrations are a core product feature, who want coding agents to build and iterate on those integrations.
Pros
- Coding agents build the integrations: Install the Nango skill once and your coding agent reads API docs, writes the integration, tests it against a real connection, iterates on real errors, and deploys it.
npx skills add NangoHQ/skills
- After installing the skill, a prompt like the one below is enough to generate a working integration:
Build a Nango sync for HubSpot that fetches all contacts incrementally,
respects the 10,000-result search cap with a checkpoint pattern, and saves
the records to the Contact model.
Integration ID: hubspot
Connection ID: test-connection

- See using AI coding agents for building API integrations for the full workflow.
- Custom unified APIs, built by your coding agent: Define your own unified data models with the fields and entities your product actually needs, then let the Nango skill scaffold the syncs across multiple providers from a single prompt. No hand-written boilerplate.Example prompt:
Build a Nango-powered unified API for employees across BambooHR, HiBob, and Personio.
Universal Employee model fields: id, firstName, lastName, email, jobTitle,
department, managerEmail, employmentStatus, startDate
Integration IDs: bamboohr, hibob, personio
Connection ID: test-connection
- The agent generates one sync per provider, mapping each provider’s native fields into your unified
Employeemodel:
export default createSync({
models: { Employee: EmployeeSchema },
exec: async (nango) => {
for await (const page of nango.paginate<RawEmployee>({ endpoint: '/v1/employees' })) {
const mapped = page.map(e => ({
id: e.id,
firstName: e.first_name,
lastName: e.last_name,
email: e.work_email,
jobTitle: e.job_title,
department: e.department?.name,
managerEmail: e.manager?.email,
employmentStatus: e.status,
startDate: e.start_date,
}));
await nango.batchSave(mapped, 'Employee');
}
},
});
- You keep the single-interface benefit without losing custom fields or provider-specific endpoints. Read the guide to building a custom unified API.
- Beyond tool calls, on the same platform: Tool calls, durable resumable data syncs, webhook processing, polling triggers, and per-customer configuration all run on one platform. Most Merge alternatives in this comparison cover one of these. Nango covers all of them.
- Built-in MCP server with strict tool schemas: A first-class MCP server exposes your custom tools to AI agents inside your product, with typed input and output schemas so the agent does not guess parameters.
- White-label auth UI for 700+ APIs: A drop-in Connect UI handles OAuth, API keys, basic auth, JWT, and the new MCP Auth standard. Your end users authorize against your brand, not Nango’s.

- Per-customer configuration: Custom field mappings, filters, and per-customer settings are first-class. See the customer configuration guide.
- Deep, real-time observability: Every operation generates detailed logs with full request and response details, and exports via OpenTelemetry. Custom log messages from your sync or action code show up in the same dashboard.

- Scalable runtime with tenant isolation: Tool calls run with low overhead, syncs auto-scale on traffic surges, and each customer’s executions are isolated with tenant-level fairness.
- Enterprise compliance: SOC 2 Type II, GDPR, and HIPAA compliant.
Apideck
Overview
Apideck offers a pre-built unified API with a real-time pass-through architecture. Instead of caching data on Apideck’s infrastructure, requests are forwarded to the source API on every call. The catalog covers around 190 connectors across HRIS, CRM, accounting, file storage, ATS, and e-commerce.

Best for
Teams that want a fixed unified-API schema across a small number of categories, prefer real-time pass-through to a sync-and-cache model, and do not need customization, extensibility, or custom tool calls for AI agents.
Pros
- Real-time pass-through: Every request goes directly to the source API. No sync intervals.
- Integrations marketplace: Apideck ships an embeddable marketplace component for your settings page.
Cons
- Real-time pass-through hits provider rate limits: Every read goes to the source API on demand, so the volume and speed of data you can pull is capped by each provider’s rate limits. Syncs exist precisely to avoid this: they cache normalized data on your side so dashboards, search, and AI agents can read at scale without hammering the upstream API.
- Closed source and not extensible: You cannot inspect connector code, modify behavior, or add new APIs.
- No customization for custom fields and objects: Like Merge, the unified schema is fixed. Custom fields cannot flow through the platform without workarounds.
- No code-first or AI-coding-agent path: Apideck does not provide a skill for Claude Code, Cursor, or Codex to build new connectors or tools.
- No tool calls for AI agents: Apideck is a unified-API product. It is not a competitor to Merge Agent Handler.
Unified.to
Overview
Unified.to is a pre-built unified API focused on broad category coverage. The catalog spans 20+ categories, including niche ones like messaging and source code repositories that few other unified APIs cover.

Best for
Teams that need basic read access across many categories, including niche ones, and are willing to live within a fixed unified schema with no customization.
Pros
- Wide category coverage: Covers categories most other unified APIs skip, like messaging and repositories.
- Built-in MCP interface: Exposes the unified API as MCP tools for AI agents.
Cons
- Closed source and not extensible: No way to inspect, modify, or add connectors.
- No custom unified APIs: The schema is Unified.to’s, not yours. Custom fields and provider-specific endpoints fall outside the API.
- No code-first build loop: No skill for AI coding agents, no dry-run testing, no deployment pipeline for custom integrations.
- Limited observability: Logging and trace export are not on par with code-first platforms.
- Generic MCP, not custom tools: The MCP interface exposes the unified API directly. You cannot author a custom, intent-shaped tool call (such as
onboard-customer) the way you can with a code-first platform.
Kombo
Overview
Kombo is a unified API focused on people data: HRIS, payroll, ATS, assessment, and LMS. It does not try to cover every Merge category. Kombo also does not offer self-serve signup; evaluating the product requires booking a demo call with their team.

Best for
Teams whose Merge usage is concentrated on HR data and who want deeper, more accurate coverage within HRIS, payroll, and ATS than a generalist unified API offers.
Pros
- Vertical depth: More HR-focused providers and more complete schemas within those providers than Merge in the same categories.
- UI-based custom field mapping: Customers can map their own fields without engineering work on your side.
Cons
- No self-serve signup: Trying or evaluating Kombo requires booking a sales demo. There is no free tier, sandbox, or self-serve onboarding for engineers who want to prototype before committing.
- No code-first build loop: No coding-agent skill, no MCP server for custom tools, no dry-run testing.
- Narrow scope: People data only. If your product also touches CRM, accounting, ticketing, or anything outside HR, you need a second platform.
- Closed source and not extensible: Same constraints as Merge for adding new APIs or extending integrations.
- No tool calls for AI agents: Kombo is a unified-API product, not an AI agent integration platform.
Comparison of Merge.dev alternatives
| Feature | Nango | Merge (unified API) | Apideck | Unified.to | Kombo |
|---|---|---|---|---|---|
| Primary focus | Agentic API integrations (code-first) + AI agent tools | Pre-built unified APIs | Pre-built unified APIs (real-time) | Pre-built unified APIs (broad categories) | Pre-built unified API (people data) |
| Supported APIs | 700+ across 30 categories | ~220 across 7 categories | ~190 across 6 categories | 100+ across 20+ categories | ~30 across 5 HR categories |
| AI coding agent support (Claude Code, Cursor, Codex) | Yes (skill + dry-run loop, docs MCP) | No | No | No | No |
| Custom tool calls for AI agents | Yes | Via separate Agent Handler product | No | Generic MCP only | No |
| MCP server | Yes | Yes (separate product) | No | Yes (generic) | No |
| Data syncs | Yes (durable, incremental, 2-way) | Yes (within unified-API verticals) | No | Yes | Yes |
| Webhook processing | Yes (high-throughput, auto-scaling) | Partial (varies by integration) | No | Limited | Limited |
| Custom unified APIs | Yes | No | No | No | No |
| Customization and extensibility | Full (code-first, open-source) | None | None | None | None |
| Per-customer configuration | Yes | Partial | No | No | Yes (UI-based) |
| Self-serve signup | Yes (free tier) | Yes (Launch plan) | Yes | Yes | No (sales demo required) |
| Open source | Yes | No | No | No | No |
| Self-hosting | Yes (Enterprise) | No | No | No | No |
How we evaluated these platforms
We assessed each Merge.dev alternative across five dimensions that matter for production product integrations and AI agent integrations:
- Customization and extensibility: Can engineers, or AI coding agents, modify pre-built integrations, add new APIs, and define their own data models? Or is the platform a black box?
- Integration patterns: Does the platform support tool calls, data syncs, webhook processing, and per-customer configuration? Or is it scoped to one pattern?
- AI agent support: Does the platform expose a first-class MCP server with custom tool calls? Does it ship a skill so coding agents can build new integrations?
- Observability and reliability: Does the platform log full request and response details, support OpenTelemetry export, and isolate tenants in the runtime?
- Total cost of ownership: Does pricing scale with your business or punish growth? Are you locked into the platform’s connectors and auth, or can you migrate?
Which Merge.dev alternative should you choose?
Your integrations are a core product feature, you want coding agents to build them, or you need both unified APIs and AI agent tool calls: Choose Nango. It is the only platform in this comparison that covers the Merge unified API use case and the Merge Agent Handler use case on a single stack, with code-first customization, AI coding agent support, deep observability, and 700+ APIs across 30 categories.
You want a fixed unified API with real-time pass-through and no caching: Apideck is worth considering for basic integrations across CRM, HRIS, accounting, file storage, and e-commerce. Confirm your providers are covered before committing.
Your only requirement is read-only access across many categories, including niche ones like messaging or repositories: Unified.to has the broadest category surface area among pre-built unified APIs.
Your Merge usage is HR data only and you need more depth than Merge offers: Kombo is a focused choice for HRIS, payroll, ATS, LMS, and assessment.
FAQ
What is Merge Agent Handler and how is it different from Merge’s unified API?
Merge Agent Handler, launched in October 2025, is a separate Merge product that exposes pre-built tools to AI agents over MCP. The unified API is for syncing normalized data across CRM, HRIS, accounting, ticketing, file storage, ATS, and knowledge base. Agent Handler is for letting an AI agent take actions in those systems through MCP tool calls. They share the connector layer but are sold and priced separately.
Which Merge alternative supports custom tool calls for AI agents?
Nango is the only platform in this comparison that lets you author a custom, intent-shaped tool call (for example, a single onboard-customer tool that creates a Slack channel, invites users, and posts a welcome message) in code and deploy it to a managed runtime with a built-in MCP server. Apideck, Unified.to, and Kombo are unified-API products without custom tool calls. Merge Agent Handler ships pre-built tool calls but does not let you deploy custom ones.
Are there open-source alternatives to Merge.dev?
Nango is the only open-source platform in this comparison. The code is on GitHub, you can audit and contribute integrations, and Enterprise self-hosting is available.
Can I migrate from Merge to Nango?
Yes. Most teams migrate when they hit a customization wall (custom fields, custom objects, provider-specific endpoints) or when linked-account pricing scales past their budget. With the Nango function builder skill installed, Claude Code, Cursor, or Codex rebuilds the same integrations as Nango syncs and actions in a fraction of the time it took to wire them up the first time. Run the new Nango integration in parallel during migration, then switch your product to read from Nango.
How does Nango pricing compare to Merge?
Nango has a free tier and usage-based pricing tied to API requests, not per linked account. Merge charges per production linked account starting at $650/month for 10 accounts on its Launch plan, with Professional and Enterprise tiers quote-only. For teams where many customers each connect multiple integrations, the per-linked-account model compounds quickly. We covered this in detail in Merge’s pricing breakdown.
Conclusion
Merge works for teams whose integrations are simple, fit a fixed schema, and never need to be customized. Once integrations become a core product feature, or your AI agents need custom tool calls, the limits start to bite.
Nango is the most flexible alternative here: code-first integrations that coding agents build, native support for syncs, actions, webhooks, and a built-in MCP server, and the only platform that covers both the Merge unified API and Merge Agent Handler use cases on a single stack. Apideck, Unified.to, and Kombo are narrower picks for real-time pass-through, broad category coverage, or HR-only depth.
Related reading:
- Best unified API platforms to consider in 2026
- Best agentic API integrations platform in 2026
- Best API integration platforms to use with Claude Code, Cursor, and Codex
- How to build a custom unified API for your product integrations
- Why B2B SaaS teams outgrow pre-built unified APIs
- Merge pricing: what you should know before you commit
- How Nango is different from embedded iPaaS or unified APIs
- Just-in-time integrations