Proabono Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Proabono MCP or direct API to manage subscriptions, update customer details, generate invoices, and track payments through natural language.
Proabono Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Proabono now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Anonymize CustomerTool to anonymize a customer for GDPR compliance.
Bill CustomerTool to trigger billing for a customer.
Create CustomerTool to create or declare a customer in ProAbono via the Backoffice API.
Create FeatureTool to create a new feature in ProAbono via the Backoffice API.
Delete CustomerTool to delete a customer from ProAbono by ID.
Delete OfferTool to delete an offer from ProAbono by ID.
Delete Pricing TableTool to delete a pricing table from ProAbono by its ID.
Delete Pricing Table OfferTool to delete a pricing table offer via the ProAbono Backoffice API.
Delete Subscription DiscountTool to delete a subscription discount via the Backoffice API.
Enable WebhookTool to enable a webhook in ProAbono via the Notification API.
Get Customer by IDTool to retrieve a single customer by ID from ProAbono Backoffice API.
Get Customer Billing AddressTool to retrieve a customer's billing address via the Backoffice API.
Get Customer Billing Address by ReferenceTool to retrieve the billing address for a customer by reference from ProAbono API.
Get Customer by ReferenceTool to retrieve a customer by their reference identifier from ProAbono API.
Get Customer Payment SettingsTool to retrieve customer payment settings via the Backoffice API.
Get DiscountTool to retrieve a discount by ID via the Backoffice API.
Get Feature by IDTool to retrieve a feature by ID from ProAbono Backoffice API.
Get Feature by ReferenceTool to retrieve a single feature by its reference from ProAbono API.
Get InvoiceTool to retrieve a specific invoice or credit note by ID from ProAbono.
Get Offer by IDTool to retrieve a single offer by its ID from ProAbono Backoffice API.
Get Subscription by Customer ReferenceTool to retrieve a subscription by customer reference from ProAbono.
Get Subscription Creation QuoteTool to get a pricing quote for creating a new subscription without actually creating it.
Get Usage RecordTool to retrieve a single usage record for a specific feature and customer combination from ProAbono.
Get Usages for CustomerTool to retrieve usage data for customers from ProAbono.
Invalidate CustomerTool to invalidate a customer by their reference.
Invalidate Customer by IDTool to invalidate a customer by their ProAbono internal ID.
List Balance LinesTool to list all balance lines from ProAbono.
List BusinessesTool to list all businesses from ProAbono via the Backoffice API.
List Business LocalizationTool to list localization entries by business from ProAbono via the HostedPages API.
List Customer MovesTool to list all customer balance moves via the ProAbono Backoffice API.
List CustomersTool to list all customers from ProAbono via the Backoffice API.
List Customers by FeatureTool to list customers that have access to a specific feature via the ProAbono API.
List DiscountsTool to list all discounts from ProAbono's Backoffice API.
List FeaturesTool to list all features via the ProAbono Backoffice API.
List Features (V1)Tool to retrieve all features from ProAbono API using the /v1/Features endpoint.
List Gateway AccountsTool to list payment gateway accounts from ProAbono Backoffice API.
List Gateway PermissionsTool to list gateway permissions from ProAbono API.
List Gateway RequestsTool to list gateway requests from ProAbono.
List Gateway TransactionsTool to list gateway transactions from ProAbono.
List Invoice LinesTool to list all invoice lines from ProAbono via the Backoffice API.
List Invoices and Credit NotesTool to list all invoices and credit notes from ProAbono Backoffice API.
List Invoices by Customer ReferenceTool to list invoices for a specific customer by their reference identifier from ProAbono API.
List OffersTool to list all subscription offers (plans) from ProAbono Backoffice API.
List PaymentsTool to list all payments from ProAbono Backoffice API.
List Pricing Table OffersTool to list all pricing table offers via the ProAbono Backoffice API.
List Pricing TablesTool to list all pricing tables from ProAbono Backoffice API.
List Segment LocalizationsTool to list localization entries by segment from ProAbono Backoffice API.
List SegmentsTool to list all segments from ProAbono via the Backoffice API.
List Subscription DiscountsTool to list all subscription discounts via the ProAbono Backoffice API.
List Subscription FeaturesTool to list all subscription features via the ProAbono Backoffice API.
List Subscription PeriodsTool to list all subscription periods (billing cycles) from ProAbono Backoffice API.
List SubscriptionsTool to list all subscriptions from ProAbono via the Backoffice API.
List Subscriptions (V1)Tool to retrieve all subscriptions from ProAbono API using the /v1/Subscriptions endpoint.
List Tax Profile ExceptionsTool to list tax profile exceptions from ProAbono Organization API.
List Tax ProfilesTool to list all tax profiles from ProAbono via the Backoffice API.
List Upgrade OffersTool to retrieve offers available to upgrade an existing customer subscription.
List Webhook NotificationsTool to list webhook notifications from ProAbono via the Notification API.
List WebhooksTool to list webhooks from ProAbono Notification API.
Quote Balance Line CreationTool to get a pricing quote for creating a balance line (one-time charge or credit).
Revoke Customer Portal LinksTool to revoke encrypted customer portal links and generate new ones in ProAbono.
Update Business Billing AddressTool to update business billing address via the Backoffice API.
Update CustomerTool to update an existing customer in ProAbono via the Backoffice API.
Update Customer Billing AddressTool to update the billing address for a customer in ProAbono via the API.
Update Customer Payment SettingsTool to update payment settings for a specific customer in ProAbono.
Update Customer Shipping AddressTool to update customer shipping address via the Backoffice API.
Update FeatureTool to update an existing feature in ProAbono via the Backoffice API.
Update Tax ProfilesTool to update an existing tax profile in ProAbono via the Backoffice API.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK for Python or TypeScript

Initialize Client and Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Import and initialize the Composio client, then create a Tool Router session for Proabono

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Proabono tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Show all overdue invoices for customer Acme Corp')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent (Anthropic Claude or Mastra)

Why Use Composio?

AI Native Proabono Integration

  • Supports both Proabono MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Proabono data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Proabono access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Proabono
  • Scoped, least privilege access to Proabono resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Proabono with Composio?

Yes, Proabono requires you to configure your own Basic Auth credentials. Once set up, Composio handles secure credential storage and authentication for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.