# How to integrate Gift up MCP with Pydantic AI

```json
{
  "title": "How to integrate Gift up MCP with Pydantic AI",
  "toolkit": "Gift up",
  "toolkit_slug": "gift_up",
  "framework": "Pydantic AI",
  "framework_slug": "pydantic-ai",
  "url": "https://composio.dev/toolkits/gift_up/framework/pydantic-ai",
  "markdown_url": "https://composio.dev/toolkits/gift_up/framework/pydantic-ai.md",
  "updated_at": "2026-05-12T10:12:54.222Z"
}
```

## Introduction

This guide walks you through connecting Gift up to Pydantic AI using the Composio tool router. By the end, you'll have a working Gift up agent that can list all active gift cards sold this week, show available items for sale by group, get recent transaction reports for your store through natural language commands.
This guide will help you understand how to give your Pydantic AI agent real control over a Gift up account through Composio's Gift up MCP server.
Before we dive in, let's take a quick look at the key ideas and tools involved.

## Also integrate Gift up with

- [OpenAI Agents SDK](https://composio.dev/toolkits/gift_up/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/gift_up/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/gift_up/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/gift_up/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/gift_up/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/gift_up/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/gift_up/framework/hermes-agent)
- [CLI](https://composio.dev/toolkits/gift_up/framework/cli)
- [Google ADK](https://composio.dev/toolkits/gift_up/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/gift_up/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/gift_up/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/gift_up/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/gift_up/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/gift_up/framework/crew-ai)

## TL;DR

Here's what you'll learn:
- How to set up your Composio API key and User ID
- How to create a Composio Tool Router session for Gift up
- How to attach an MCP Server to a Pydantic AI agent
- How to stream responses and maintain chat history
- How to build a simple REPL-style chat interface to test your Gift up workflows

## What is Pydantic AI?

Pydantic AI is a Python framework for building AI agents with strong typing and validation. It leverages Pydantic's data validation capabilities to create robust, type-safe AI applications.
Key features include:
- Type Safety: Built on Pydantic for automatic data validation
- MCP Support: Native support for Model Context Protocol servers
- Streaming: Built-in support for streaming responses
- Async First: Designed for async/await patterns

## What is the Gift up MCP server, and what's possible with it?

The Gift up MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Gift Up! account. It provides structured and secure access to your gift card operations, so your agent can list available gift cards, fetch company or checkout details, generate transaction reports, and manage users or webhook subscriptions on your behalf.
- Gift card inventory management: Instantly list, filter, and audit all gift cards issued or available in your account, including status and details.
- Sales item and group retrieval: Let your agent fetch all items for sale and organize them by item groups, making it easy to manage or present products.
- Company and checkout settings access: Retrieve current company details and checkout configuration to audit or display your store's gift card setup.
- Transaction reporting and analytics: Generate and filter transaction reports for deep insights into gift card sales, redemptions, and trends.
- User and webhook management: List all users with account access or subscribe to webhook events, enabling automated notifications and streamlined team management.

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `GIFT_UP_ADD_ORDER_NOTE` | Add Note to Order | Tool to add a note to an existing order. Use when you need to track additional information about an order. Notes are limited to 500 characters and can be used for internal tracking purposes. |
| `GIFT_UP_CREATE_ITEM` | Create Item | Tool to create a new item for sale in the Gift Up checkout. An item represents a product that can be purchased (gift cards, vouchers, passes, etc.). Use when you need to add new products to the Gift Up store, set up gift card offerings with specific prices and values, or configure items with custom pricing, expiry rules, and availability windows. |
| `GIFT_UP_CREATE_ITEM_GROUP` | Create Item Group | Tool to create a new item group for organizing items in the Gift Up checkout. Use when you need to create a container for grouping items together. |
| `GIFT_UP_CREATE_ORDER` | Create Order | Tool to create a new order which generates one or more gift cards. Use when you need to programmatically create gift card orders through the Gift Up API. Orders encapsulate transaction data and contain gift card details including codes, balances, and fulfillment information. |
| `GIFT_UP_DELETE_ITEM` | Delete Item | Tool to delete an item from the Gift Up checkout. Removes the item from sale. Use when you need to permanently remove an item by its ID. |
| `GIFT_UP_DELETE_ITEM_GROUP` | Delete Item Group | Tool to delete an item group by its ID. Use when you need to remove an item group that has no items in it. |
| `GIFT_UP_DELETE_WEBHOOK` | Delete Webhook | Tool to delete a webhook subscription by its ID. Use when you need to remove an existing webhook subscription. |
| `GIFT_UP_GET_CHECKOUT_SETTINGS` | Get Checkout Settings | Tool to retrieve the current checkout settings. Use when you need to display or audit your checkout configuration. |
| `GIFT_UP_GET_COMPANY` | Get Company Details | Tool to retrieve company details. Use when you need to fetch the current company associated with the API key. |
| `GIFT_UP_GET_EMAIL_SETTINGS` | Get Email Settings | Tool to retrieve email settings for the Gift Up account. Use when you need to view the current email configuration including sender details, receipt settings, and notification preferences. |
| `GIFT_UP_GET_GIFT_CARD` | Get Gift Card by Code | Tool to retrieve a gift card by its code. Use when you need detailed information about a specific gift card including balance, status, and transaction history. |
| `GIFT_UP_GET_GIFT_CARD_SETTINGS` | Get Gift Card Settings | Tool to retrieve gift card settings including code format, expiration rules, and display options. Use when you need to understand how gift cards are configured for the account. |
| `GIFT_UP_GET_ITEM` | Get Item by ID | Tool to retrieve detailed information about a specific item by its ID. Use when you need to fetch complete details about an item including price, availability, stock levels, and configuration settings. |
| `GIFT_UP_GET_ORDER` | Get Order by ID | Tool to retrieve a specific order by ID. Use when you need detailed information about an order including gift cards, payment details, and customer information. |
| `GIFT_UP_GET_PING` | API Health Check | Tool to perform a health check on the Gift Up! API. Use when you need to verify API connectivity and authentication without fetching account-specific data. |
| `GIFT_UP_GET_REPORT_TRANSACTION` | Get Report Transaction | Tool to retrieve a specific transaction report by its ID. Use when you need detailed transaction information for accounting purposes. |
| `GIFT_UP_GET_SHIPPING_SETTINGS` | Get Shipping Settings | Tool to retrieve shipping settings for physical gift cards. Use when you need to display or audit postal delivery configuration. |
| `GIFT_UP_GET_STRIPE_CONNECTION` | Get Stripe Connection | Tool to retrieve current Stripe integration connection settings. Use when you need to view or audit Stripe payment configuration for the Gift Up account. |
| `GIFT_UP_GET_WEBHOOK` | Get Webhook | Tool to retrieve a specific webhook by its ID. Use when you need to get detailed configuration information for a webhook subscription. |
| `GIFT_UP_LIST_GIFT_CARD_ARTWORK` | List Gift Card Artwork | Tool to list all gift card artwork available for use on gift cards. Returns artwork information including URLs and sort order. Use when you need to retrieve available gift card designs. |
| `GIFT_UP_LIST_GIFT_CARDS` | List Gift Cards | Tool to list gift cards. Use when you need to retrieve gift cards with optional filters. |
| `GIFT_UP_LIST_ITEM_GROUPS` | List Item Groups | Tool to list item groups. Use when you need to retrieve all item groups for filtering items by group. |
| `GIFT_UP_LIST_ITEMS` | List Items | Lists all items (gift cards, passes, etc.) available for sale in the Gift Up account. Items can be optionally filtered by groupId to retrieve only items within a specific group. Use this to discover available items, check item details, pricing, stock levels, and group associations. |
| `GIFT_UP_LIST_LOCATIONS` | List Locations | Retrieves all physical locations where gift cards are sold and/or redeemed. Locations are used exclusively for reporting purposes in Gift Up! to track where gift cards are being distributed and used. This endpoint returns all configured locations for your account, or an empty array if none have been set up. Use this action when you need to: - Get a list of all store/venue locations in your Gift Up! account - Retrieve location IDs for reporting or analytics purposes - Check which physical locations are configured for gift card operations |
| `GIFT_UP_LIST_PROMOTIONS` | List Promotions | Tool to list all promotions that allow discounts to be applied on the Gift Up checkout. Use when you need to retrieve all available promotion codes and their details. |
| `GIFT_UP_LIST_REPORT_TRANSACTIONS` | List Report Transactions | Tool to list report transactions with optional filters. Use after setting desired filters to retrieve transactions report. |
| `GIFT_UP_LIST_USERS` | List GiftUp Users | Tool to list all users. Use when you need to retrieve all users who have access to your Gift Up! account. |
| `GIFT_UP_LIST_WEBHOOKS` | List Webhooks | Tool to list all webhooks configured for the account. Use when you need to view all webhook subscriptions and their configuration details. |
| `GIFT_UP_POST_PING` | Health Check (POST) | Tool to perform a health check using POST /ping endpoint. Use when you need to test API connectivity and authentication by sending a test payload that will be echoed back. |
| `GIFT_UP_REACTIVATE_GIFT_CARD` | Reactivate Gift Card | Tool to reactivate a voided gift card. Use when you need to restore a gift card that has been voided. This operation is only valid for gift cards that have been voided - active or fully redeemed cards cannot be reactivated. |
| `GIFT_UP_REDEEM_GIFT_CARD` | Redeem Gift Card | Tool to redeem a specified amount or units from a gift card. Use when processing a purchase or transaction against a gift card balance. The gift card cannot be redeemed if it has been voided or lacks sufficient balance. |
| `GIFT_UP_REDEEM_GIFT_CARD_IN_FULL` | Redeem Gift Card In Full | Tool to redeem a gift card in full. Use when you need to deduct the entire remaining balance from a gift card in a single operation. |
| `GIFT_UP_SUBSCRIBE_WEBHOOK` | Subscribe to Webhook | Subscribe to Gift Up! webhook events to receive real-time notifications about orders and gift cards. This tool registers a callback URL that Gift Up! will POST to when specified events occur. Before creating the subscription, Gift Up! validates the target URL by sending a test POST request with body {"test": true} and expects a 200 OK response. Use cases: - Receive notifications when orders are created - Track gift card lifecycle events (creation, updates, redemption) - Integrate Gift Up! events with external systems - Build custom automation workflows Note: The target URL must be publicly accessible and capable of responding with 200 OK to the validation request, or the subscription will fail with a 400 error. |
| `GIFT_UP_TOP_UP_GIFT_CARD` | Top Up Gift Card | Tool to add value to an existing gift card. Use when you need to increase the balance or units on a gift card. Cannot top up a voided gift card - attempting to do so will result in a 422 error. |
| `GIFT_UP_UNDO_REDEMPTION` | Undo Gift Card Redemption | Tool to undo a previous redemption on a gift card, restoring the redeemed amount to the gift card balance. Use when you need to reverse a redemption transaction and restore the gift card balance. |
| `GIFT_UP_UPDATE_EMAIL_SETTINGS` | Update Email Settings | Tool to update email settings using JSON Patch operations. Use when you need to modify receipt email content, footer text, sender details, logo settings, or gift card email preferences. This tool allows granular updates to specific email settings properties without replacing the entire configuration. Common use cases include updating footer text, changing sender information, modifying button colors, and adjusting email content. |
| `GIFT_UP_UPDATE_GIFT_CARD` | Update Gift Card | Tool to update gift card properties using JSON Patch operations. Use when you need to modify gift card details like recipient information, expiry dates, or terms. |
| `GIFT_UP_UPDATE_GIFT_CARD_SETTINGS` | Update Gift Card Settings | Tool to update gift card settings using JSON Patch operations. Use when you need to modify code format, expiration rules, or display options for gift cards. |
| `GIFT_UP_UPDATE_ITEM` | Update Item | Update an item's properties using JSON Patch operations. Use this to modify item name, price, description, stock levels, availability, and other properties. Supports replace, add, and remove operations for granular field updates. |
| `GIFT_UP_UPDATE_ITEM_GROUP` | Update Item Group | Tool to update an item group's properties using JSON Patch operations. Use when you need to modify name, description, autoExpand, or sortOrder fields of an existing item group. |
| `GIFT_UP_UPDATE_ORDER` | Update Order | Tool to update an order's properties using JSON Patch operations. Use when you need to modify purchaser email, purchaser name, or other order details. |
| `GIFT_UP_UPDATE_STRIPE_CONNECTION` | Update Stripe Connection | Tool to update Stripe integration connection settings for the Gift Up account. Use when configuring or changing Stripe API keys, Connect settings, or payment method availability. |
| `GIFT_UP_UPLOAD_ARTWORK` | Upload Gift Card Artwork | Tool to upload new gift card artwork. Use when you need to add or update artwork images for gift cards. |
| `GIFT_UP_VOID_GIFT_CARD` | Void Gift Card | Tool to void a gift card making it invalid for future redemptions. Use when you need to permanently invalidate a gift card. A voided gift card cannot be voided again. |

## Supported Triggers

None listed.

## Creating MCP Server - Stand-alone vs Composio SDK

The Gift up MCP server is an implementation of the Model Context Protocol that connects your AI agent to Gift up. It provides structured and secure access so your agent can perform Gift up operations on your behalf through a secure, permission-based interface.
With Composio's managed implementation, you don't have to create your own developer app. For production, if you're building an end product, we recommend using your own credentials. The managed server helps you prototype fast and go from 0-1 faster.

## Step-by-step Guide

### 1. Prerequisites

Before starting, make sure you have:
- Python 3.9 or higher
- A Composio account with an active API key
- Basic familiarity with Python and async programming

### 1. Getting API Keys for OpenAI and Composio

OpenAI API Key
- Go to the [OpenAI dashboard](https://platform.openai.com/settings/organization/api-keys) and create an API key. You'll need credits to use the models, or you can connect to another model provider.
- Keep the API key safe.
Composio API Key
- Log in to the [Composio dashboard](https://dashboard.composio.dev?utm_source=toolkits&utm_medium=framework_docs).
- Navigate to your API settings and generate a new API key.
- Store this key securely as you'll need it for authentication.

### 2. Install dependencies

Install the required libraries.
What's happening:
- composio connects your agent to external SaaS tools like Gift up
- pydantic-ai lets you create structured AI agents with tool support
- python-dotenv loads your environment variables securely from a .env file
```bash
pip install composio pydantic-ai python-dotenv
```

### 3. Set up environment variables

Create a .env file in your project root.
What's happening:
- COMPOSIO_API_KEY authenticates your agent to Composio's API
- USER_ID associates your session with your account for secure tool access
- OPENAI_API_KEY to access OpenAI LLMs
```bash
COMPOSIO_API_KEY=your_composio_api_key_here
USER_ID=your_user_id_here
OPENAI_API_KEY=your_openai_api_key
```

### 4. Import dependencies

What's happening:
- We load environment variables and import required modules
- Composio manages connections to Gift up
- MCPServerStreamableHTTP connects to the Gift up MCP server endpoint
- Agent from Pydantic AI lets you define and run the AI assistant
```python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio
from pydantic_ai import Agent
from pydantic_ai.mcp import MCPServerStreamableHTTP

load_dotenv()
```

### 5. Create a Tool Router Session

What's happening:
- We're creating a Tool Router session that gives your agent access to Gift up tools
- The create method takes the user ID and specifies which toolkits should be available
- The returned session.mcp.url is the MCP server URL that your agent will use
```python
async def main():
    api_key = os.getenv("COMPOSIO_API_KEY")
    user_id = os.getenv("USER_ID")
    if not api_key or not user_id:
        raise RuntimeError("Set COMPOSIO_API_KEY and USER_ID in your environment")

    # Create a Composio Tool Router session for Gift up
    composio = Composio(api_key=api_key)
    session = composio.create(
        user_id=user_id,
        toolkits=["gift_up"],
    )
    url = session.mcp.url
    if not url:
        raise ValueError("Composio session did not return an MCP URL")
```

### 6. Initialize the Pydantic AI Agent

What's happening:
- The MCP client connects to the Gift up endpoint
- The agent uses GPT-5 to interpret user commands and perform Gift up operations
- The instructions field defines the agent's role and behavior
```python
# Attach the MCP server to a Pydantic AI Agent
gift_up_mcp = MCPServerStreamableHTTP(url, headers={"x-api-key": COMPOSIO_API_KEY})
agent = Agent(
    "openai:gpt-5",
    toolsets=[gift_up_mcp],
    instructions=(
        "You are a Gift up assistant. Use Gift up tools to help users "
        "with their requests. Ask clarifying questions when needed."
    ),
)
```

### 7. Build the chat interface

What's happening:
- The agent reads input from the terminal and streams its response
- Gift up API calls happen automatically under the hood
- The model keeps conversation history to maintain context across turns
```python
# Simple REPL with message history
history = []
print("Chat started! Type 'exit' or 'quit' to end.\n")
print("Try asking the agent to help you with Gift up.\n")

while True:
    user_input = input("You: ").strip()
    if user_input.lower() in {"exit", "quit", "bye"}:
        print("\nGoodbye!")
        break
    if not user_input:
        continue

    print("\nAgent is thinking...\n", flush=True)

    async with agent.run_stream(user_input, message_history=history) as stream_result:
        collected_text = ""
        async for chunk in stream_result.stream_output():
            text_piece = None
            if isinstance(chunk, str):
                text_piece = chunk
            elif hasattr(chunk, "delta") and isinstance(chunk.delta, str):
                text_piece = chunk.delta
            elif hasattr(chunk, "text"):
                text_piece = chunk.text
            if text_piece:
                collected_text += text_piece
        result = stream_result

    print(f"Agent: {collected_text}\n")
    history = result.all_messages()
```

### 8. Run the application

What's happening:
- The asyncio loop launches the agent and keeps it running until you exit
```python
if __name__ == "__main__":
    asyncio.run(main())
```

## Complete Code

```python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio
from pydantic_ai import Agent
from pydantic_ai.mcp import MCPServerStreamableHTTP

load_dotenv()

async def main():
    api_key = os.getenv("COMPOSIO_API_KEY")
    user_id = os.getenv("USER_ID")
    if not api_key or not user_id:
        raise RuntimeError("Set COMPOSIO_API_KEY and USER_ID in your environment")

    # Create a Composio Tool Router session for Gift up
    composio = Composio(api_key=api_key)
    session = composio.create(
        user_id=user_id,
        toolkits=["gift_up"],
    )
    url = session.mcp.url
    if not url:
        raise ValueError("Composio session did not return an MCP URL")

    # Attach the MCP server to a Pydantic AI Agent
    gift_up_mcp = MCPServerStreamableHTTP(url, headers={"x-api-key": COMPOSIO_API_KEY})
    agent = Agent(
        "openai:gpt-5",
        toolsets=[gift_up_mcp],
        instructions=(
            "You are a Gift up assistant. Use Gift up tools to help users "
            "with their requests. Ask clarifying questions when needed."
        ),
    )

    # Simple REPL with message history
    history = []
    print("Chat started! Type 'exit' or 'quit' to end.\n")
    print("Try asking the agent to help you with Gift up.\n")

    while True:
        user_input = input("You: ").strip()
        if user_input.lower() in {"exit", "quit", "bye"}:
            print("\nGoodbye!")
            break
        if not user_input:
            continue

        print("\nAgent is thinking...\n", flush=True)

        async with agent.run_stream(user_input, message_history=history) as stream_result:
            collected_text = ""
            async for chunk in stream_result.stream_output():
                text_piece = None
                if isinstance(chunk, str):
                    text_piece = chunk
                elif hasattr(chunk, "delta") and isinstance(chunk.delta, str):
                    text_piece = chunk.delta
                elif hasattr(chunk, "text"):
                    text_piece = chunk.text
                if text_piece:
                    collected_text += text_piece
            result = stream_result

        print(f"Agent: {collected_text}\n")
        history = result.all_messages()

if __name__ == "__main__":
    asyncio.run(main())
```

## Conclusion

You've built a Pydantic AI agent that can interact with Gift up through Composio's Tool Router. With this setup, your agent can perform real Gift up actions through natural language.
You can extend this further by:
- Adding other toolkits like Gmail, HubSpot, or Salesforce
- Building a web-based chat interface around this agent
- Using multiple MCP endpoints to enable cross-app workflows (for example, Gmail + Gift up for workflow automation)
This architecture makes your AI agent "agent-native", able to securely use APIs in a unified, composable way without custom integrations.

## How to build Gift up MCP Agent with another framework

- [OpenAI Agents SDK](https://composio.dev/toolkits/gift_up/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/gift_up/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/gift_up/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/gift_up/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/gift_up/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/gift_up/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/gift_up/framework/hermes-agent)
- [CLI](https://composio.dev/toolkits/gift_up/framework/cli)
- [Google ADK](https://composio.dev/toolkits/gift_up/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/gift_up/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/gift_up/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/gift_up/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/gift_up/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/gift_up/framework/crew-ai)

## Related Toolkits

- [Addresszen](https://composio.dev/toolkits/addresszen) - Addresszen is a real-time address autocomplete and verification service. It helps capture accurate, deliverable addresses with instant suggestions and validation.
- [Asin data api](https://composio.dev/toolkits/asin_data_api) - Asin data api gives you detailed, real-time product data from Amazon, including price, rank, and reviews. Perfect for e-commerce pros and data-driven marketers who need instant marketplace insights.
- [Baselinker](https://composio.dev/toolkits/baselinker) - BaseLinker is an all-in-one e-commerce management platform connecting stores, marketplaces, carriers, and more. It streamlines order processing, inventory control, and automates your sales operations.
- [Bestbuy](https://composio.dev/toolkits/bestbuy) - Best Buy is a leading retailer offering APIs for product, store, and recommendation data. Instantly access up-to-date retail insights for smarter shopping and decision-making.
- [Btcpay server](https://composio.dev/toolkits/btcpay_server) - BTCPay Server is a free, open-source, self-hosted Bitcoin payment processor. It lets merchants accept Bitcoin payments directly, cutting out middlemen and boosting privacy.
- [Cdr platform](https://composio.dev/toolkits/cdr_platform) - Cdr platform is an API for purchasing carbon dioxide removal services. It enables businesses to offset emissions by accessing verified carbon removal projects.
- [Cloudcart](https://composio.dev/toolkits/cloudcart) - CloudCart is an e-commerce platform for building and managing online stores. It helps businesses streamline product listings, orders, and customer engagement.
- [Countdown api](https://composio.dev/toolkits/countdown_api) - Countdown API gives you real-time, structured eBay product data, reviews, and seller feedback. Perfect for powering price monitoring, product research, or marketplace analytics workflows.
- [Dpd2](https://composio.dev/toolkits/dpd2) - Dpd2 is a robust email management platform for handling, sorting, and automating email workflows. Streamline your communications and boost productivity with advanced sorting, labeling, and response tools.
- [Finerworks](https://composio.dev/toolkits/finerworks) - FinerWorks is an online platform for fine art and photo printing services. Artists and photographers use it to order custom prints and manage print inventory efficiently.
- [Fingertip](https://composio.dev/toolkits/fingertip) - Fingertip is a business management platform for selling, booking, and customer engagement—all from a single link. It helps businesses streamline operations and connect with customers across social channels.
- [Fraudlabs pro](https://composio.dev/toolkits/fraudlabs_pro) - FraudLabs Pro is an online payment fraud detection service for e-commerce and merchants. It helps minimize chargebacks and revenue loss by detecting and preventing fraudulent transactions.
- [Goody](https://composio.dev/toolkits/goody) - Goody is a gifting platform that lets users send gifts and physical products without handling logistics. It streamlines gifting by managing delivery, fulfillment, and recipient experience.
- [Gumroad](https://composio.dev/toolkits/gumroad) - Gumroad is a platform for selling digital products, physical goods, and memberships with a simple checkout and marketing tools. It streamlines creator payouts and helps you grow your audience effortlessly.
- [Instacart](https://composio.dev/toolkits/instacart) - Instacart is an online grocery delivery and pickup service platform. It lets you discover local retailers and create shoppable lists and recipes with ease.
- [Junglescout](https://composio.dev/toolkits/junglescout) - Junglescout is an Amazon product research and analytics platform for sellers. It delivers sales estimates, competitive insights, and optimization tools to boost your Amazon business.
- [Ko fi](https://composio.dev/toolkits/ko_fi) - Ko-fi is a platform that lets creators receive donations, memberships, and sales from fans. It helps creators monetize their work and grow their audience with minimal friction.
- [Lemon squeezy](https://composio.dev/toolkits/lemon_squeezy) - Lemon Squeezy is a payments and subscription platform built for software companies. It makes managing payments, taxes, and customer subscriptions effortless.
- [Loyverse](https://composio.dev/toolkits/loyverse) - Loyverse is a point-of-sale (POS) platform for small businesses, offering tools for sales, inventory, and customer loyalty. It helps streamline retail operations and boost customer engagement.
- [Memberstack](https://composio.dev/toolkits/memberstack) - Memberstack lets you add user authentication, payments, and member management to your website—no backend code required. Easily manage your site's members and subscriptions from a single platform.

## Frequently Asked Questions

### What are the differences in Tool Router MCP and Gift up MCP?

With a standalone Gift up MCP server, the agents and LLMs can only access a fixed set of Gift up tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Gift up and many other apps based on the task at hand, all through a single MCP endpoint.

### Can I use Tool Router MCP with Pydantic AI?

Yes, you can. Pydantic AI fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Gift up tools.

### Can I manage the permissions and scopes for Gift up while using Tool Router?

Yes, absolutely. You can configure which Gift up scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

### How safe is my data with Composio Tool Router?

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Gift up data and credentials are handled as safely as possible.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
