# How to integrate Gift up MCP with Claude Agent SDK

```json
{
  "title": "How to integrate Gift up MCP with Claude Agent SDK",
  "toolkit": "Gift up",
  "toolkit_slug": "gift_up",
  "framework": "Claude Agent SDK",
  "framework_slug": "claude-agents-sdk",
  "url": "https://composio.dev/toolkits/gift_up/framework/claude-agents-sdk",
  "markdown_url": "https://composio.dev/toolkits/gift_up/framework/claude-agents-sdk.md",
  "updated_at": "2026-05-12T10:12:54.222Z"
}
```

## Introduction

This guide walks you through connecting Gift up to the Claude Agent SDK 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 Claude Agent SDK 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 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:
- Get and set up your Claude/Anthropic and Composio API keys
- Install the necessary dependencies
- Initialize Composio and create a Tool Router session for Gift up
- Configure an AI agent that can use Gift up as a tool
- Run a live chat session where you can ask the agent to perform Gift up operations

## What is Claude Agent SDK?

The Claude Agent SDK is Anthropic's official framework for building AI agents powered by Claude. It provides a streamlined interface for creating agents with MCP tool support and conversation management.
Key features include:
- Native MCP Support: Built-in support for Model Context Protocol servers
- Permission Modes: Control tool execution permissions
- Streaming Responses: Real-time response streaming for interactive applications
- Context Manager: Clean async context management for sessions

## 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:
- Composio API Key and Claude/Anthropic API Key
- Primary know-how of Claude Agents SDK
- A Gift up account
- Some knowledge of Python

### 1. Getting API Keys for Claude/Anthropic and Composio

Claude/Anthropic API Key
- Go to the [Anthropic Console](https://console.anthropic.com/settings/organization/api-keys) and create an API key. You'll need credits to use the models.
- 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

No description provided.
```python
pip install composio-anthropic claude-agent-sdk python-dotenv
```

```typescript
npm install @anthropic-ai/claude-agent-sdk @composio/core dotenv
```

### 3. Set up environment variables

Create a .env file in your project root.
What's happening:
- COMPOSIO_API_KEY authenticates with Composio
- USER_ID identifies the user for session management
- ANTHROPIC_API_KEY authenticates with Anthropic/Claude
```bash
COMPOSIO_API_KEY=your_composio_api_key_here
USER_ID=your_user_id_here
ANTHROPIC_API_KEY=your_anthropic_api_key_here
```

### 4. Import dependencies

No description provided.
```python
import asyncio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions
import os
from composio import Composio
from dotenv import load_dotenv

load_dotenv()
```

```typescript
import 'dotenv/config';
import readline from 'node:readline';
import { Composio } from '@composio/core';
import { query, type Options } from "@anthropic-ai/claude-agent-sdk";

dotenv.config();
```

### 5. Create a Composio instance and Tool Router session

No description provided.
```python
async def chat_with_remote_mcp():
    api_key = os.getenv("COMPOSIO_API_KEY")
    if not api_key:
        raise RuntimeError("COMPOSIO_API_KEY is not set")

    composio = Composio(api_key=api_key)

    # Create Tool Router session for Gift up
    mcp_server = composio.create(
        user_id=os.getenv("USER_ID"),
        toolkits=["gift_up"]
    )

    url = mcp_server.mcp.url

    if not url:
        raise ValueError("Session URL not found")
```

```typescript
async function chat() {
  const { COMPOSIO_API_KEY, USER_ID } = process.env;
  if (!COMPOSIO_API_KEY || !USER_ID) {
    throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
  }

  const composio = new Composio({ apiKey: COMPOSIO_API_KEY });

  // Create Tool Router session for Gift up
  const session = await composio.create(USER_ID, {
    toolkits: ['gift_up'],
  });
  const mcpUrl = session?.mcp.url;
```

### 6. Configure Claude Agent with MCP

No description provided.
```python
# Configure remote MCP server for Claude
options = ClaudeAgentOptions(
    permission_mode="bypassPermissions",
    mcp_servers={
        "composio": {
            "type": "http",
            "url": url,
            "headers": {
                "x-api-key": os.getenv("COMPOSIO_API_KEY")
            }
        }
    },
    system_prompt="You are a helpful assistant with access to Gift up tools via Composio.",
    max_turns=10
)
```

```typescript
const options: Options = {
  permissionMode: 'bypassPermissions',
  mcpServers: {
    composio: {
      type: 'http',
      url: mcpUrl,
      headers: { 'x-api-key': COMPOSIO_API_KEY }
    }
  },
  systemPrompt: 'You are a helpful assistant with access to Gift up tools via Composio.',
  maxTurns: 10,
};
```

### 7. Create client and start chat loop

No description provided.
```python
# Create client with context manager
async with ClaudeSDKClient(options=options) as client:
    print("\nChat started. Type 'exit' or 'quit' to end.\n")

    # Main chat loop
    while True:
        user_input = input("You: ").strip()
        if user_input.lower() in {"exit", "quit"}:
            print("Goodbye!")
            break

        # Send query
        await client.query(user_input)

        # Receive and print response
        print("Claude: ", end="", flush=True)
        async for message in client.receive_response():
            if hasattr(message, "content"):
                for block in message.content:
                    if hasattr(block, "text"):
                        print(block.text, end="", flush=True)
        print()
```

```typescript
const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
    prompt: 'You: '
  });

  console.log('\nChat started. Type "exit" to quit.\n');

  let isProcessing = false;

  async function ask(prompt: string) {
    isProcessing = true;
    rl.pause();

    process.stdout.write('Claude is thinking...');
    const stream = query({ prompt, options });

    let firstChunk = true;
    for await (const msg of stream) {
      const content = (msg as any).message?.content || (msg as any).content;
      if (Array.isArray(content)) {
        for (const block of content) {
          if (block.type === 'text' && block.text) {
            if (firstChunk) {
              process.stdout.write('\r\x1b[K');
              process.stdout.write('Claude: ');
              firstChunk = false;
            }
            process.stdout.write(block.text);
          }
        }
      }
    }
    process.stdout.write('\n\n');

    isProcessing = false;
    rl.resume();
    rl.prompt();
  }

  rl.on('line', async (line) => {
    if (isProcessing) return;

    const input = line.trim();
    if (input === 'exit') {
      rl.close();
      process.exit(0);
    }
    if (input) await ask(input);
    else rl.prompt();
  });

  await ask('What can you help me with?');
}
```

### 8. Run the application

No description provided.
```python
if __name__ == "__main__":
    asyncio.run(chat_with_remote_mcp())
```

```typescript
try {
  await chat();
} catch (error) {
  console.error(error);
  process.exit(1);
}
```

## Complete Code

```python
import asyncio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions
import os
from composio import Composio
from dotenv import load_dotenv

load_dotenv()

async def chat_with_remote_mcp():
    api_key = os.getenv("COMPOSIO_API_KEY")
    if not api_key:
        raise RuntimeError("COMPOSIO_API_KEY is not set")

    composio = Composio(api_key=api_key)

    # Create Tool Router session for Gift up
    mcp_server = composio.create(
        user_id=os.getenv("USER_ID"),
        toolkits=["gift_up"]
    )

    url = mcp_server.mcp.url

    if not url:
        raise ValueError("Session URL not found")

    # Configure remote MCP server for Claude
    options = ClaudeAgentOptions(
        permission_mode="bypassPermissions",
        mcp_servers={
            "composio": {
                "type": "http",
                "url": url,
                "headers": {
                    "x-api-key": os.getenv("COMPOSIO_API_KEY")
                }
            }
        },
        system_prompt="You are a helpful assistant with access to Gift up tools via Composio.",
        max_turns=10
    )

    # Create client with context manager
    async with ClaudeSDKClient(options=options) as client:
        print("\nChat started. Type 'exit' or 'quit' to end.\n")

        # Main chat loop
        while True:
            user_input = input("You: ").strip()
            if user_input.lower() in {"exit", "quit"}:
                print("Goodbye!")
                break

            # Send query
            await client.query(user_input)

            # Receive and print response
            print("Claude: ", end="", flush=True)
            async for message in client.receive_response():
                if hasattr(message, "content"):
                    for block in message.content:
                        if hasattr(block, "text"):
                            print(block.text, end="", flush=True)
            print()

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

```typescript
import 'dotenv/config';
import readline from 'node:readline';
import { Composio } from '@composio/core';
import { query, type Options } from "@anthropic-ai/claude-agent-sdk";

async function chat() {
  const { COMPOSIO_API_KEY, USER_ID } = process.env;
  if (!COMPOSIO_API_KEY || !USER_ID) {
    throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
  }

  const composio = new Composio({ apiKey: COMPOSIO_API_KEY });
  const session = await composio.create(USER_ID, {
    toolkits: ['gift_up']
  });
  const mcp_url = session?.mcp.url;

  const options: Options = {
    permissionMode: 'bypassPermissions',
    mcpServers: {
      composio: {
        type: 'http',
        url: mcp_url,
        headers: { 'x-api-key': COMPOSIO_API_KEY }
      }
    },
    systemPrompt: 'You are a helpful assistant with access to Gift up tools via Composio.',
    maxTurns: 10,
  };

  const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
    prompt: 'You: '
  });

  console.log('\nChat started. Type "exit" to quit.\n');

  let isProcessing = false;

  async function ask(prompt: string) {
    isProcessing = true;
    rl.pause();

    process.stdout.write('Claude is thinking...');
    const stream = query({ prompt, options });

    let firstChunk = true;
    for await (const msg of stream) {
      const content = (msg as any).message?.content || (msg as any).content;
      if (Array.isArray(content)) {
        for (const block of content) {
          if (block.type === 'text' && block.text) {
            if (firstChunk) {
              process.stdout.write('\r\x1b[K');
              process.stdout.write('Claude: ');
              firstChunk = false;
            }
            process.stdout.write(block.text);
          }
        }
      }
    }
    process.stdout.write('\n\n');

    isProcessing = false;
    rl.resume();
    rl.prompt();
  }

  rl.on('line', async (line) => {
    if (isProcessing) return;

    const input = line.trim();
    if (input === 'exit') {
      rl.close();
      process.exit(0);
    }
    if (input) await ask(input);
    else rl.prompt();
  });

  await ask('What can you help me with?');
}

try {
  await chat();
} catch (error) {
  console.error(error);
  process.exit(1);
}
```

## Conclusion

You've successfully built a Claude Agent SDK agent that can interact with Gift up through Composio's Tool Router.
Key features:
- Native MCP support through Claude's agent framework
- Streaming responses for real-time interaction
- Permission bypass for smooth automated workflows
You can extend this by adding more toolkits, implementing custom business logic, or building a web interface around the agent.

## 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 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 Claude Agent SDK?

Yes, you can. Claude Agent SDK 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)
