$ GET /integrations
Framework adapters.
One surface underneath.
Packages that turn the catalog into native tool objects for your stack, with payment handled underneath: proof-of-work for free tools, x402 or MPP for paid ones, or a prepaid credits key. Each package has its own page with the install line, a working example and how it pays. New to the protocols? Start with the explainers.
Turns Agent402 tools into OpenAI function-calling definitions.
agent402-openai-toolsTurns Agent402 tools into Anthropic Messages API tool definitions (input_schema format) for server-side agents and custom tool loops.
agent402-anthropic-toolsGives a Vercel AI SDK agent four meta tools that reach the whole catalog: the model describes a task, agent402_find or agent402_route picks the tool, and agent402_call runs and pays for it.
agent402-ai-sdkLangChain.js tool objects for Agent402, ready for any LangChain or LangGraph agent.
agent402-langchainThe Python adapter: an Agent402Toolkit that hands LangChain and CrewAI agents the same four meta tools the JavaScript adapters expose.
agent402-langchainReturns a FunctionTool[] array for any LlamaIndex TS agent or workflow, built from the catalog's raw JSON Schema, so there is no Zod or hand-written schema to maintain..
agent402-llamaindexADK FunctionTool instances for Gemini agents built on the Agent Development Kit.
agent402-google-adkTools for agents built with the OpenAI Agents SDK (@openai/agents).
agent402-openai-agentsStrands tool({...}) instances for TypeScript agents, including Strands agents running on AWS Bedrock AgentCore.
agent402-strandsAn MCP server for any MCP client (Claude Desktop, Claude Code, Cursor and others).
agent402-mcpA small buyer-side client: resolve a task to a tool with find(), then call() it with payment handled.
agent402-clientThe sell side: middleware or a reverse proxy that puts a per-request price on a site or API for AI crawlers and agents while human visitors browse free.
agent402-tollboothAn OpenClaw plugin that adds Agent402 as a model provider: the routed auto model and every model the gateway lists, priced per call.
agent402-openclaw// same shape everywhere
Install, get tools, pass them in.
# pick your stack npm install agent402-openai-tools import { agent402Tools } from "agent402-openai-tools"; const { tools, execute } = await agent402Tools({ slugs: ["extract","hash","render"] }); // pass tools to openai.chat.completions.create({ tools }) // call execute(name, args) on a tool_call. payment handled underneath.
the per-slug adapters (OpenAI, Anthropic, LlamaIndex, Strands) share this shape; the others expose four meta tools. See each package's page.
Wire it into your framework.
zero-dep · non-custodial · proof-of-work or USDC