# How to integrate Gift up MCP with Mastra AI

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

## Introduction

This guide walks you through connecting Gift up to Mastra 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 Mastra 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)
- [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:
- Set up your environment so Mastra, OpenAI, and Composio work together
- Create a Tool Router session in Composio that exposes Gift up tools
- Connect Mastra's MCP client to the Composio generated MCP URL
- Fetch Gift up tool definitions and attach them as a toolset
- Build a Mastra agent that can reason, call tools, and return structured results
- Run an interactive CLI where you can chat with your Gift up agent

## What is Mastra AI?

Mastra AI is a TypeScript framework for building AI agents with tool support. It provides a clean API for creating agents that can use external services through MCP.
Key features include:
- MCP Client: Built-in support for Model Context Protocol servers
- Toolsets: Organize tools into logical groups
- Step Callbacks: Monitor and debug agent execution
- OpenAI Integration: Works with OpenAI models via @ai-sdk/openai

## 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:
- Node.js 18 or higher
- A Composio account with an active API key
- An OpenAI API key
- Basic familiarity with TypeScript

### 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 need credits or a connected billing setup to use the models.
- Store the key somewhere safe.
Composio API Key
- Log in to the [Composio dashboard](https://dashboard.composio.dev?utm_source=toolkits&utm_medium=framework_docs).
- Go to Settings and copy your API key.
- This key lets your Mastra agent talk to Composio and reach Gift up through MCP.

### 2. Install dependencies

Install the required packages.
What's happening:
- @composio/core is the Composio SDK for creating MCP sessions
- @mastra/core provides the Agent class
- @mastra/mcp is Mastra's MCP client
- @ai-sdk/openai is the model wrapper for OpenAI
- dotenv loads environment variables from .env
```bash
npm install @composio/core @mastra/core @mastra/mcp @ai-sdk/openai dotenv
```

### 3. Set up environment variables

Create a .env file in your project root.
What's happening:
- COMPOSIO_API_KEY authenticates your requests to Composio
- COMPOSIO_USER_ID tells Composio which user this session belongs to
- OPENAI_API_KEY lets the Mastra agent call OpenAI models
```bash
COMPOSIO_API_KEY=your_composio_api_key_here
COMPOSIO_USER_ID=your_user_id_here
OPENAI_API_KEY=your_openai_api_key_here
```

### 4. Import libraries and validate environment

What's happening:
- dotenv/config auto loads your .env so process.env.* is available
- openai gives you a Mastra compatible model wrapper
- Agent is the Mastra agent that will call tools and produce answers
- MCPClient connects Mastra to your Composio MCP server
- Composio is used to create a Tool Router session
```typescript
import "dotenv/config";
import { openai } from "@ai-sdk/openai";
import { Agent } from "@mastra/core/agent";
import { MCPClient } from "@mastra/mcp";
import { Composio } from "@composio/core";
import * as readline from "readline";

import type { AiMessageType } from "@mastra/core/agent";

const openaiAPIKey = process.env.OPENAI_API_KEY;
const composioAPIKey = process.env.COMPOSIO_API_KEY;
const composioUserID = process.env.COMPOSIO_USER_ID;

if (!openaiAPIKey) throw new Error("OPENAI_API_KEY is not set");
if (!composioAPIKey) throw new Error("COMPOSIO_API_KEY is not set");
if (!composioUserID) throw new Error("COMPOSIO_USER_ID is not set");

const composio = new Composio({
  apiKey: composioAPIKey as string,
});
```

### 5. Create a Tool Router session for Gift up

What's happening:
- create spins up a short-lived MCP HTTP endpoint for this user
- The toolkits array contains "gift_up" for Gift up access
- session.mcp.url is the MCP URL that Mastra's MCPClient will connect to
```typescript
async function main() {
  const session = await composio.create(
    composioUserID as string,
    {
      toolkits: ["gift_up"],
    },
  );

  const composioMCPUrl = session.mcp.url;
  console.log("Gift up MCP URL:", composioMCPUrl);
```

### 6. Configure Mastra MCP client and fetch tools

What's happening:
- MCPClient takes an id for this client and a list of MCP servers
- The headers property includes the x-api-key for authentication
- getTools fetches the tool definitions exposed by the Gift up toolkit
```typescript
const mcpClient = new MCPClient({
    id: composioUserID as string,
    servers: {
      nasdaq: {
        url: new URL(composioMCPUrl),
        requestInit: {
          headers: session.mcp.headers,
        },
      },
    },
    timeout: 30_000,
  });

console.log("Fetching MCP tools from Composio...");
const composioTools = await mcpClient.getTools();
console.log("Number of tools:", Object.keys(composioTools).length);
```

### 7. Create the Mastra agent

What's happening:
- Agent is the core Mastra agent
- name is just an identifier for logging and debugging
- instructions guide the agent to use tools instead of only answering in natural language
- model uses openai("gpt-5") to configure the underlying LLM
```typescript
const agent = new Agent({
    name: "gift_up-mastra-agent",
    instructions: "You are an AI agent with Gift up tools via Composio.",
    model: "openai/gpt-5",
  });
```

### 8. Set up interactive chat interface

What's happening:
- messages keeps the full conversation history in Mastra's expected format
- agent.generate runs the agent with conversation history and Gift up toolsets
- maxSteps limits how many tool calls the agent can take in a single run
- onStepFinish is a hook that prints intermediate steps for debugging
```typescript
let messages: AiMessageType[] = [];

console.log("Chat started! Type 'exit' or 'quit' to end.\n");

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

rl.prompt();

rl.on("line", async (userInput: string) => {
  const trimmedInput = userInput.trim();

  if (["exit", "quit", "bye"].includes(trimmedInput.toLowerCase())) {
    console.log("\nGoodbye!");
    rl.close();
    process.exit(0);
  }

  if (!trimmedInput) {
    rl.prompt();
    return;
  }

  messages.push({
    id: crypto.randomUUID(),
    role: "user",
    content: trimmedInput,
  });

  console.log("\nAgent is thinking...\n");

  try {
    const response = await agent.generate(messages, {
      toolsets: {
        gift_up: composioTools,
      },
      maxSteps: 8,
    });

    const { text } = response;

    if (text && text.trim().length > 0) {
      console.log(`Agent: ${text}\n`);
        messages.push({
          id: crypto.randomUUID(),
          role: "assistant",
          content: text,
        });
      }
    } catch (error) {
      console.error("\nError:", error);
    }

    rl.prompt();
  });

  rl.on("close", async () => {
    console.log("\nSession ended.");
    await mcpClient.disconnect();
    process.exit(0);
  });
}

main().catch((err) => {
  console.error("Fatal error:", err);
  process.exit(1);
});
```

## Complete Code

```typescript
import "dotenv/config";
import { openai } from "@ai-sdk/openai";
import { Agent } from "@mastra/core/agent";
import { MCPClient } from "@mastra/mcp";
import { Composio } from "@composio/core";
import * as readline from "readline";

import type { AiMessageType } from "@mastra/core/agent";

const openaiAPIKey = process.env.OPENAI_API_KEY;
const composioAPIKey = process.env.COMPOSIO_API_KEY;
const composioUserID = process.env.COMPOSIO_USER_ID;

if (!openaiAPIKey) throw new Error("OPENAI_API_KEY is not set");
if (!composioAPIKey) throw new Error("COMPOSIO_API_KEY is not set");
if (!composioUserID) throw new Error("COMPOSIO_USER_ID is not set");

const composio = new Composio({ apiKey: composioAPIKey as string });

async function main() {
  const session = await composio.create(composioUserID as string, {
    toolkits: ["gift_up"],
  });

  const composioMCPUrl = session.mcp.url;

  const mcpClient = new MCPClient({
    id: composioUserID as string,
    servers: {
      gift_up: {
        url: new URL(composioMCPUrl),
        requestInit: {
          headers: session.mcp.headers,
        },
      },
    },
    timeout: 30_000,
  });

  const composioTools = await mcpClient.getTools();

  const agent = new Agent({
    name: "gift_up-mastra-agent",
    instructions: "You are an AI agent with Gift up tools via Composio.",
    model: "openai/gpt-5",
  });

  let messages: AiMessageType[] = [];

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

  rl.prompt();

  rl.on("line", async (input: string) => {
    const trimmed = input.trim();
    if (["exit", "quit"].includes(trimmed.toLowerCase())) {
      rl.close();
      return;
    }

    messages.push({ id: crypto.randomUUID(), role: "user", content: trimmed });

    const { text } = await agent.generate(messages, {
      toolsets: { gift_up: composioTools },
      maxSteps: 8,
    });

    if (text) {
      console.log(`Agent: ${text}\n`);
      messages.push({ id: crypto.randomUUID(), role: "assistant", content: text });
    }

    rl.prompt();
  });

  rl.on("close", async () => {
    await mcpClient.disconnect();
    process.exit(0);
  });
}

main();
```

## Conclusion

You've built a Mastra AI agent that can interact with Gift up through Composio's Tool Router.
You can extend this further by:
- Adding other toolkits like Gmail, Slack, or GitHub
- Building a web-based chat interface around this agent
- Using multiple MCP endpoints to enable cross-app workflows

## 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)
- [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 Mastra AI?

Yes, you can. Mastra 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)
