For the complete documentation index, see llms.txt. This page is also available as Markdown.

Coinbase AgentKit

Native integration via floeActionProvider() (TypeScript) and floe_action_provider() (Python). Both expose the same 54 actions.

Install

npm install floe-agent @coinbase/agentkit
pip install floe-agentkit-actions coinbase-agentkit

Use

import { AgentKit } from "@coinbase/agentkit";
import { floeActionProvider } from "floe-agent";

const agentkit = await AgentKit.from({
  walletProvider,
  actionProviders: [floeActionProvider({ facilitatorApiKey: process.env.FLOE_API_KEY })],
});
from coinbase_agentkit import AgentKit, AgentKitConfig
from floe_agentkit_actions import floe_action_provider

agentkit = AgentKit(AgentKitConfig(
    wallet_provider=wallet_provider,
    action_providers=[floe_action_provider(facilitator_api_key=FLOE_API_KEY)],
))

See TypeScript SDK or Python SDK for the full action reference.

Example

The x402-client example wires AgentKit + Floe into an agent that pays an x402 endpoint through the proxy. Browse the cookbook index for more integrations across LangChain, CrewAI, MCP, and OpenAI Agents.

Last updated