Vaulter

Integrations

Connectors overview

Connect your app to the services you already use. How connectors work in Vaulter.

Connectors let your app work with the services you already use, so your app is not an island. Instead of building an integration from scratch, you connect a service once and let the agent build features on top of it.

What a connector is

A connector is a secure link between your Vaulter app and an outside service: your payment processor, your team chat, an AI model, your CRM. Vaulter ships a curated catalog of 27 of the most-used services, each pre-wired so that connecting is minutes, not days. See the connector catalog for the full list.

How connecting works

Open Vault → Connectors and pick a service. What happens next depends on the service:

  • Services like Slack, Notion, and HubSpot use their own sign-in window. You approve access, and you are connected.
  • Services like OpenAI and Anthropic take an API key, pasted into a secure form.
  • A few, like Stripe, support both.

Either way, the credential is held in Vaulter's secure connection layer. It is never written into your project files, never visible in the code editor, and never readable by the agent.

Each service in the panel shows its live status, Connected or Not connected, and you can disconnect any service at any time with one click and a confirmation.

How your app uses a connection

Your app never talks to the outside service directly with a raw key. Calls route through Vaulter, which attaches the stored credential server-side on each request. That means the key is not sitting in your app's code where a visitor could dig it out, and rotating a credential is just reconnecting, with no code changes.

The agent knows your connections

This is where connectors get powerful. The agent can see which services are connected, and when a feature needs one that is not, it pauses and shows you a Connect button right in the chat, then resumes once you have connected. So you can simply ask for outcomes:

  • "When someone submits the contact form, post it to our Slack."
  • "Add AI-generated product descriptions using OpenAI."
  • "Charge customers with Stripe when they complete a booking."

Next steps