Connect Stripe
Process Stripe (API Key) payments and read transaction data via API.
Stripe
Process Stripe (API Key) payments and read transaction data via API.
Connect with basic credentials
The client enters the required username, token, or secret pair in the hosted connect flow. CybrLink keeps credentials out of the agent and enforces provider scope before proxy execution.
Where to get your Stripe API keyStep 1
Open the portal connect flow
Step 2
Enter provider credentials
Step 3
Limit write scope before launch
Sample request
// 1. Mint a session token for the end user
const session = await link.connect.session({
integrationKey: "stripe-api-key",
userId: "u_42",
});
// 2. After the user enters their provider credentials, proxy a request
const res = await link.proxy("stripe-api-key", "u_42", {
method: "GET",
endpoint: "/api/v1/me",
});More in this category
Available agent tools
Typed, scoped actions your AI agent can run through CybrLink's MCP server once Stripe is connected.
STRIPE_LIST_CUSTOMERSList customers from the connected Stripe account. Returns { customers: [{ id, email, name, created }], has_more }.
STRIPE_LIST_CHARGESList charges from the connected Stripe account. Returns { charges: [{ id, amount, currency, status, paid, created }], has_more }.
STRIPE_RETRIEVE_CUSTOMERRetrieve a single Stripe customer by ID. Returns { id, email, name, created, currency, delinquent, balance }.
STRIPE_LIST_INVOICESList invoices from the connected Stripe account. Returns { invoices: [{ id, customer, status, amount_due, currency, created }], has_more }.
STRIPE_LIST_SUBSCRIPTIONSList subscriptions from the connected Stripe account. Returns { subscriptions: [{ id, customer, status, current_period_end, cancel_at_period_end }], has_more }.
STRIPE_LIST_PAYMENT_INTENTSList payment intents from the connected Stripe account. Returns { payment_intents: [{ id, amount, currency, status, customer, created }], has_more }.
STRIPE_RETRIEVE_BALANCERetrieve the connected Stripe account's current balance. Returns { available: [{ amount, currency }], pending: [{ amount, currency }] }.
Stripe + AI agents: common questions
- How do I connect Stripe to an AI agent?
- Create a free CybrLink account, open the dashboard, and click Connect on Stripe. You authorize once with basic credentials; CybrLink stores the credential in its token vault and your agent reaches Stripe through the CybrLink MCP server or the agent proxy API. The credential itself is never placed in the model's context.
- Does Stripe work with Claude, GPT, and other MCP clients?
- Yes. CybrLink exposes a remote MCP (Model Context Protocol) server, so any MCP-capable client or agent framework — including Claude, OpenAI-based agents, and custom agents — can call Stripe once you've connected it. Non-MCP agents can use the authenticated HTTP proxy instead.
- Is it safe to give an AI agent access to Stripe?
- CybrLink scopes every connection to the permissions you grant, keeps tokens out of the model, logs each call to an activity audit trail, and lets you revoke the Stripe connection at any time from the dashboard.