Connect any API in seconds. Stripe, Gmail, Notion, Slack, GitHub, Jira, HubSpot, Salesforce, and 767 more.
From payments to analytics, your agents connect to the tools your business runs on.
Stripe, PayPal, Square, Braintree, Paddle, LemonSqueezy, Razorpay, and more.
Salesforce, HubSpot, Pipedrive, Zoho CRM, Freshsales, Close, Copper, and more.
Slack, Discord, Telegram, WhatsApp, Twilio, SendGrid, Intercom, and more.
AWS, GCP, Azure, Cloudflare, DigitalOcean, Vercel, Netlify, Fly.io, and more.
PostgreSQL, MongoDB, Redis, MySQL, DynamoDB, Supabase, PlanetScale, and more.
GitHub, GitLab, Jira, Linear, Bitbucket, CircleCI, Sentry, PagerDuty, and more.
Mailchimp, SendGrid, ConvertKit, ActiveCampaign, Brevo, Klaviyo, and more.
Google Analytics 4, Mixpanel, Amplitude, PostHog, Plausible, Heap, and more.
More connectors across productivity, storage, e-commerce, HR, legal, and other categories.
Every connector is graded, monitored, and battle-tested.
Bearer tokens, OAuth2 flows, and API key authentication. Each connector declares its required auth type.
Cursor, offset, and page-based pagination handled automatically. Agents get complete datasets without manual loops.
Automatic backoff and retry logic respects API rate limits. No failed requests, no bans.
Continuous health checks track uptime and response times. Alerts fire when a connector degrades.
Every connector receives an A-F quality grade based on documentation coverage, test results, and reliability metrics.
Every connector tracks its source: official docs, open-source repos, or community contributions. No synthetic data.
Every connector follows a standard schema. Define the API, auth, and endpoints.
// connectors/stripe.json
{
"name": "stripe",
"display_name": "Stripe",
"category": "payment",
"base_url": "https://api.stripe.com/v1",
"auth_type": "bearer",
"docs_url": "https://stripe.com/docs/api",
"endpoints": [
{
"method": "GET",
"path": "/charges",
"description": "List all charges"
},
{
"method": "POST",
"path": "/charges",
"description": "Create a charge"
}
],
"quality_grade": "A",
"provenance": "official-docs"
}
Open-source connector registry. Contribute your own or use community connectors.