Skip to content
@Floe-Labs

Floe Labs

Give your AI Agent a budget, not unrestricted balance. Agent wallet, multi vendor payments, card ramps, programmable spend controls.

Floe Labs

Floe Labs

Credit and payments for AI agent developers.
x402 credit lines, fiat funding, programmable spend controls. No crypto required.

Website · Docs · Dashboard · 𝕏

npm pypi license

$2 free credit (~200 API calls). Your agent can start paying for APIs today — no card required. Get started →


How it works

  1. Sign up with email + a funding source. Card, Apple Pay, Google Pay, or bank transfer. Floe provisions your wallets in the background — no MetaMask, no seed phrase, no gas token.
  2. Floe issues an x402 credit line to your agent's wallet. Set spending controls — per-call cap, daily limit, allowed destinations.
  3. Your agent pays vendors per-call; you get real-time visibility. Every call is a typed receipt: target URL, amount, status, time. Reconcile, alert, or revoke from the dashboard.

Vendor Marketplace — 27 verified API endpoints

Every endpoint is callable with one Floe API key. Browse the full directory →

Category Services
Compute Venice AI — chat, responses API, embeddings
Voice Venice AI — TTS, transcription · dTelecom STT
Image Venice AI — generation, upscale, edit, background removal
Text Firecrawl — search + scrape
Search Exa, Parallel AI, Tavily
Browser Hyperbrowser, Browserbase, Anchor Browser
Agent Tools AgentMail, Pinata Cloud, PostalForm

The Floe Stack

# Component What it does Status
01 Agent Wallet Non-custodial wallet with programmable spend limits and allowed-destination controls. GA
02 Fiat on/off-ramp USDC in via cards, bank transfers, Apple Pay, Google Pay. Local payouts in 100+ countries. Onramp GA · Offramp Preview
03 Secured working capital Instant credit against your deposit. One API call to borrow. 3,000+ lines issued · zero defaults. GA
04 Unsecured working capital Credit underwritten against your agent's receivables and usage signals. Preview
05 x402 payment facilitator One proxy endpoint to pay any x402 API. 27 verified endpoints in the Vendor Marketplace. GA
06 Credit & trust bureau Every repayment builds your agent's portable credit record. Reader Beta · Writer Preview

Works with your framework

Framework Status How
Coinbase AgentKit GA Native — floeActionProvider
LangChain GA Via getLangChainTools adapter
Vercel AI SDK GA Via getVercelAITools adapter
Claude Desktop / Claude Code / Cursor GA Via floe-mcp-server
CrewAI Beta Via MCP server
OpenAI Agents SDK Preview MCP fallback today; native adapter on the way
ElizaOS Preview MCP fallback today
Plain HTTP / REST GA Any framework that speaks HTTP

Repos

Repo What it does Install
agentkit-actions TypeScript SDK — 45 actions covering wallet, credit, x402, agent awareness, and flash loans. npm install floe-agent
agentkit-actions-py Python SDK — same 45 actions, full parity. pip install floe-agentkit-actions
floe-mcp-server MCP server for Claude, Cursor, and any MCP-compatible agent. Setup guide
floe-examples Runnable end-to-end agents across frameworks. git clone

Get started in 5 minutes

TypeScript

npm install floe-agent @coinbase/agentkit viem zod
import { AgentKit } from "@coinbase/agentkit";
import { floeActionProvider } from "floe-agent";

const agent = await AgentKit.from({
  walletProvider,
  actionProviders: [floeActionProvider()],
});

// Borrow against your deposit
const loan = await agent.run("instant_borrow", {
  borrowAmount: "5000000000",
  collateralAmount: "5500000000",
  maxInterestRateBps: "1200",
  duration: "604800",
});

// Pay any x402 API through the Floe proxy
const response = await agent.run("x402_fetch", {
  url: "https://api.exa.ai/search",
  method: "POST",
  body: { query: "AI agent frameworks" },
});

Python

pip install floe-agentkit-actions
from floe_agentkit_actions import floe_action_provider

provider = floe_action_provider()

loan = provider.instant_borrow(wallet_provider, {
    "borrow_amount": "5000000000",
    "collateral_amount": "5500000000",
    "max_interest_rate_bps": "1200",
    "duration": "604800",
})

MCP (zero install)

Add to your Claude Desktop, Claude Code, or Cursor config:

{
  "mcpServers": {
    "floe": {
      "url": "https://mcp.floelabs.xyz/mcp",
      "transport": "streamable-http"
    }
  }
}

Full quickstart


Links


Credit and payments for the agent economy.

Pinned Loading

  1. agentkit-actions-py agentkit-actions-py Public

    Python 3 1

  2. floe-mcp-server floe-mcp-server Public

    TypeScript 3 1

  3. agentkit-actions agentkit-actions Public

    TypeScript 4 2

  4. floe-examples floe-examples Public template

    Example agents and integrations for the Floe credit

    TypeScript 2 1

Repositories

Showing 6 of 6 repositories

Top languages

Loading…

Most used topics

Loading…