Skip to main content
Verslay
Connecting Your Stack: A Tour of Verslay's 30+ Integrations
IntegrationsEngineering

Connecting Your Stack: A Tour of Verslay's 30+ Integrations

S
Shubham Gupta·March 12, 2026·6 min read

Integrations are where AI agent platforms live or die. A language model that can only read your data is a research tool. One that can act on your data — send the email, create the deal, post the campaign, update the inventory — is a business tool.

Verslay has 30+ integrations across two layers: OAuth providers that agents can act through, and intelligence packages that agents use for ambient data. Here's a complete breakdown of both, plus the engineering decisions behind how we secure them.

Layer 1: OAuth Providers (13 active)

These are the integrations where Verslay needs a live connection to your account to read and write on your behalf. We support 13 OAuth 2.0 providers:

CRM & Sales

Email & Calendar

Social & Advertising

E-Commerce

Productivity & Finance

Each connection takes 15-30 seconds to complete. The OAuth dance happens entirely server-side — the authorization URL is generated by Verslay's API, you complete the provider's consent screen, and the callback exchanges the code for tokens before you ever see a result.

Layer 2: Intelligence Packages (7 always-on)

These packages don't require any connection setup. They're always available to agents that need ambient intelligence:

All 7 packages have free-tier fallbacks. If you provide API keys (optional) for the premium sources, you get higher rate limits and more accurate data — but the packages work without them.

The Token Security Model

Here's where the engineering gets interesting.

When you connect an OAuth provider, Verslay stores the access token and refresh token in an oauth_tokens table in our Supabase database. The critical detail: they're never stored in plaintext.

We use AES-256-GCM encryption with a per-encryption initialization vector. The stored format is:

iv:authTag:encryptedData

Each segment is base64-encoded. The encryption key is a 64-character hex string (TOKEN_ENCRYPTION_KEY) that lives only in our server-side environment — never exposed to the browser, never logged.

When an agent executes and needs to call, say, the Gmail API, the flow is:

  1. The MCP server receives the tool call (send_message)
  2. It decrypts the stored token using the TOKEN_ENCRYPTION_KEY
  3. It makes the API call to Gmail on your behalf
  4. It returns the result to the agent session

Your credentials never leave the Verslay MCP server. The agent session on your claude.ai instance sees only the tool result, not the raw token.

Why this matters for multi-tenant setups: The same encryption model applies to Shopify multi-shop scenarios. If you manage 3 Shopify stores, you have 3 distinct encrypted token records, each with a unique shop_domain. The Shopify tools in your agent session take an optional shop_domain parameter to target the right store.

Token Refresh

OAuth tokens expire. We handle refresh automatically:

This means most users never have to think about token expiry. The hub connections page shows token status — green for active, amber for expired — so you can proactively reconnect if needed.

The OAuth Proxy Architecture

We spent significant time on what we call the "generic handler" pattern.

Rather than writing a bespoke OAuth flow for each of the 13 providers, we built a single handler in apps/web/src/lib/oauth/oauth-handler.ts that reads from a provider configuration file. Each provider's config specifies:

Adding a new OAuth provider is a config entry, not a code change. The CSRF protection (timing-safe token comparison), the state parameter, and the callback validation are all centralized in the handler.

The same pattern applies on the MCP server side — a config-driven token manager that knows how to decrypt and use tokens for each provider type.

What's Coming: API Key Integrations

Beyond OAuth, we're building API key integrations for providers that don't use OAuth: Stripe, Razorpay, Cashfree, PayU, Pine Labs (payments), WooCommerce, Notion, ClickUp, Coda, Zendesk, and Odoo.

These are currently "coming soon" in the connections page — the configuration exists but the input flow isn't built yet. They'll arrive as part of our Phase B integration expansion, alongside 30 new agent tools for the 12 PROVIDER_INJECTION_POINT atomic agents.

Connecting Right Now

The fastest way to see the integration value is to connect Gmail and run the Morning Brief or Email Campaign Manager use-cases. Gmail is the integration with the highest cross-use-case leverage — it's used in 14 of the 58 use-cases.


See the full integration catalog, including provider-by-provider capability breakdowns and which use-cases each integration unlocks.

Explore all integrations →

Ready to put agents to work?

98 AI agents. 58 pre-built use-cases. 13 OAuth integrations. Start free — no credit card required.