ReferralRock MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with ReferralRock MCP or direct API to create referral campaigns, enroll members, track referrals, and analyze program performance through natural language.

ReferralRock logoReferralRock
Basic

ReferralRock is a referral marketing platform for creating and managing referral programs. It helps businesses drive word-of-mouth growth and increase customer acquisition.

35 Tools

Try ReferralRock now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
ReferralRock
Try asking
TOOLS

Supported Tools

Every ReferralRock action and event your agent gets out of the box.

Remove Email from Unsubscribe List

Tool to remove an email address from the unsubscribe list.

Delete Webhook

Tool to delete a webhook subscription.

Delete Members from Program

Tool to delete members from a referral program.

Delete Referral

Tool to delete one or more referrals from a referral program.

Delete Rewards

Tool to delete rewards from members or referrals in a referral program.

Get Email Unsubscribed Status

Tool to check if an email address is unsubscribed from communications.

Get Webhook History for Event

Tool to retrieve webhook history for a specific event.

List Program Members

Tool to list program members with filtering and pagination.

Get Member Statistics

Tool to retrieve comprehensive statistics for a single member from ReferralRock.

Get Payout

Tool to retrieve payout list by ID.

Get Payout Details by ID

Tool to get payout details by ID.

Get Pending Payouts

Tool to get pending payouts for a member or recipient.

Get Payout Transactions

Tool to get payout transaction history for referral program participants.

Get Single Program

Tool to retrieve a single referral program by name.

List Referral Programs

List all referral programs in ReferralRock.

Get Referrals

Tool to list referrals with filtering and pagination options.

Get Single Referral

Tool to retrieve a single referral by email, ID, or external ID.

Get Reward Rules

Tool to get reward rules for a program.

Get Rewards

Tool to list rewards with optional filtering and pagination.

Remove Email from Unsubscribe List

Tool to remove an email address from the unsubscribe list.

Unsubscribe Email Address

Tool to unsubscribe an email address from the ReferralRock mailing list.

Create Webhook Subscription

Tool to create or update a webhook subscription for event notifications.

Create Invite Feed Entry

Tool to create an invite feed entry for automatic invitations.

Create Invite Feed Entries

Tool to create multiple invite feed entries for automatic invites in ReferralRock.

Generate Member Access Token

Tool to generate pre-authenticated member access URLs for sharing and portal experiences.

Generate Member Access URLs

Tool to generate member access URLs for custom share experience or secure portal embedding.

Add new member to program

Tool to create a new member and add them to a referral program.

Remove Members from Program

Tool to remove members from a referral program.

Create Referral Action

Tool to create a referral action for processing recurring rewards.

Remove Referral

Tool to remove referrals from a referral program.

Create New Referral

Tool to create a new referral in ReferralRock based on a member's referral code.

Update Referral Status

Tool to update referral status in ReferralRock.

Update Referral Details

Tool to update referral details in a referral program.

Issue Reward to Member

Tool to issue a reward to a member in the Referral Rock system.

Remove Rewards

Tool to remove rewards from members or referrals of a referral program.

SETUP GUIDE

Connect ReferralRock MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for ReferralRock
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Show referral stats for this week.'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect ReferralRock API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute ReferralRock Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List all active referral campaigns.'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute ReferralRock actions with your Agent

Why Use Composio?

AI Native ReferralRock Integration

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

Managed Auth

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

Agent Optimized Design

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

Enterprise Grade Security

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

Frequently asked questions

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

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

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

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

Start with ReferralRock.It takes 30 seconds.

Managed auth, hosted MCP servers, and every ReferralRock tool your agent needs.Free to start.

Start building