AI-powered support
Ask me anything about SettleGrid
Integrate Code Reviewer Pro into your Mastra agent with SettleGrid's per-call billing. No subscriptions, no minimums — pay only for what you use.
AI-powered code review with security analysis, style enforcement, and vulnerability detection
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 Code Reviewer Pro, 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 code_reviewer_proTool = createTool({
id: "code_reviewer_pro",
description: "CodeReviewerPro — call via SettleGrid",
inputSchema: z.object({
query: z.string().describe("Input query"),
}),
execute: async ({ context }) => {
const resp = await fetch(
"https://proxy.settlegrid.ai/v1/code_reviewer_pro",
{
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(`CodeReviewerPro failed: ${resp.status}`);
return resp.json();
},
});
// Create an agent with the tool
const agent = new Agent({
name: "code_reviewer_pro-agent",
instructions: "Use CodeReviewerPro to accomplish the task.",
model: { provider: "OPEN_AI", name: "gpt-4o" },
tools: { code_reviewer_pro: code_reviewer_proTool },
});
const result = await agent.generate("Use CodeReviewerPro for this input");Execute your Mastra agent. SettleGrid automatically meters each call to Code Reviewer Pro 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 Code Reviewer Pro in your Mastra agent today.
View Code Reviewer Pro →Use Code Reviewer Pro with other agent frameworks: