AI-powered support
Ask me anything about SettleGrid
Integrate Legal compliance MCP into your Mastra agent with SettleGrid's per-call billing. No subscriptions, no minimums — pay only for what you use.
A Model Context Protocol server providing content guardrails and security filtering capabilities for AI applications. Includes a security checkpoint interface for validating and protecting AI interactions.
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 Legal compliance MCP, 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 legal_compliance_mcpTool = createTool({
id: "legal_compliance_mcp",
description: "LegalcomplianceMCP — call via SettleGrid",
inputSchema: z.object({
query: z.string().describe("Input query"),
}),
execute: async ({ context }) => {
const resp = await fetch(
"https://proxy.settlegrid.ai/v1/legal_compliance_mcp",
{
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(`LegalcomplianceMCP failed: ${resp.status}`);
return resp.json();
},
});
// Create an agent with the tool
const agent = new Agent({
name: "legal_compliance_mcp-agent",
instructions: "Use LegalcomplianceMCP to accomplish the task.",
model: { provider: "OPEN_AI", name: "gpt-4o" },
tools: { legal_compliance_mcp: legal_compliance_mcpTool },
});
const result = await agent.generate("Use LegalcomplianceMCP for this input");Execute your Mastra agent. SettleGrid automatically meters each call to Legal compliance MCP 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 Legal compliance MCP in your Mastra agent today.
View Legal compliance MCP →Use Legal compliance MCP with other agent frameworks: