Integrations · Python

FurlPay + CrewAI

Install furlpay-crewai and hand get_furlpay_tools() to the crew member that manages money. Each tool is a CrewAI-native tool with typed args, so a treasurer agent can check balances, pay invoices and rebalance within its mandate.

Install

pip install furlpay-crewai

Quickstart

from crewai import Agent
from furlpay_crewai import get_furlpay_tools

treasurer = Agent(
    role="Treasurer",
    goal="Keep the crew funded and settle approved invoices in USDC",
    tools=get_furlpay_tools(),  # demo mode; api_key=... for live
)

What your agent gets

  • get_balance
  • send_stablecoin
  • swap_tokens
  • get_portfolio
  • pay_for_resource
  • set_agent_budget

FAQ

Can different crew members get different budgets?

Yes — instantiate tools per agent with separate budgets via set_agent_budget, so a research agent can spend $5 on data APIs while the treasurer holds the transfer tools.

All FurlPay integration packages are MIT-licensed and run in demo mode without an API key. Framework names are trademarks of their respective owners; FurlPay is not affiliated with or endorsed by them.