What is an Integration Connector?

An integration connector is a purpose-built software component that translates between one specific external system's API and a common internal interface, so other parts of a platform can interact with that system without knowing its particular quirks.

Every external service — Salesforce, Slack, Stripe, a company's internal ERP — exposes its own API with its own authentication scheme, data format, rate limits, and pagination style. A connector is the adapter that absorbs all of that idiosyncrasy: it handles the specific auth flow, translates the external data shape into a normalized internal model, and exposes a consistent set of operations (read, write, list, search) that the rest of the platform can call generically. This is what allows a platform to add support for a new external tool without rewriting its core logic — the orchestration layer just calls “list records” or “send message” against whichever connector is active, and the connector handles translating that into whatever the underlying API actually requires. Connectors are also the natural place to put resilience concerns — retry logic, rate-limit backoff, credential refresh — since those concerns are specific to each external system's behavior.

In practice with Neotask

Each MCP server Neotask connects to — Gmail, Notion, a CRM — functions as a connector: it exposes a consistent tool-calling interface to the agent while internally handling that provider's specific OAuth flow, API shape, and rate limits.

Related terms

Start free

Plans

Free

$0/mo

Download without a card and start for free.

Individual

$50/mo

The full personal agent platform for one person.

Enterprise

$200/mo

Multiple workspaces and capacity for larger teams.

Continue