AI-powered support
Ask me anything about SettleGrid
Integrate connect-test into your Mastra agent with SettleGrid's per-call billing. No subscriptions, no minimums — pay only for what you use.
Connect-rail launch-test tool — invoked via the cutover playbook to verify $1 transfers route through Stripe Connect end-to-end.
Mastra is a TypeScript-first framework for building AI agents and workflows. It provides type-safe tool definitions and composable agent pipelines.
npm install mastraPurchase credits for connect-test, then generate an API key from your Consumer Dashboard.
import { Agent, createTool } from "mastra";
import { z } from "zod";
// Define the tool with Zod schema
const connect_testTool = createTool({
id: "connect_test",
description: "connecttest — call via SettleGrid",
inputSchema: z.object({
query: z.string().describe("Input query"),
}),
execute: async ({ context }) => {
const resp = await fetch(
"https://proxy.settlegrid.ai/v1/connect_test",
{
method: "POST",
headers: {
"x-api-key": "sg_live_your_key_here",
"Content-Type": "application/json",
},
body: JSON.stringify({ query: context.query }),
}
);
if (!resp.ok) throw new Error(`connecttest failed: ${resp.status}`);
return resp.json();
},
});
// Create an agent with the tool
const agent = new Agent({
name: "connect_test-agent",
instructions: "Use connecttest to accomplish the task.",
model: { provider: "OPEN_AI", name: "gpt-4o" },
tools: { connect_test: connect_testTool },
});
const result = await agent.generate("Use connecttest for this input");Execute your Mastra agent. SettleGrid automatically meters each call to connect-test and deducts from your credit balance. No rate limits beyond your purchased credits.
No subscriptions or minimums. Credits never expire. See full pricing details.
Purchase credits and start using connect-test in your Mastra agent today.
View connect-test →Use connect-test with other agent frameworks: