INDIVIDUAL MCP TOOL
list_my_affiliations
Every app the caller is an affiliate of, across all businesses, newest first: referral links (short + username + merchant-domain direct for apps with a website or landing page, plus the COUPON code when the app has Stripe discount codes on — a code typed at checkout, not a URL), lifetime stats, the caller’s EFFECTIVE commission (their personal deal when the owner set one, flagged custom: true, else the app default), a rails object saying whether that app pays on website sales, in-app purchases or both (and the ceiling each rail can actually pay), and which business it belongs to.
LIVE ENDPOINT
https://affiliateo.com/api/mcp
Connect to this endpoint to inspect the live schema for list_my_affiliations and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
- A tool name or description suggests a financial action.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.affiliateo]
url = "https://affiliateo.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"affiliateo": {
"type": "http",
"url": "https://affiliateo.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: affiliateo
Remote MCP URL: https://affiliateo.com/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"affiliateo": {
"url": "https://affiliateo.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"affiliateo": {
"type": "http",
"url": "https://affiliateo.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "affiliateo",
"transport": "streamable-http",
"url": "https://affiliateo.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_businesses— List every business this API key can act on, with each ad network’s connection status and every app’s id/slug/type/status (all five types).get_app— Commission info for one affiliate app: rate and type (with per-product rates, prices, and approximate commission per sale for the app’s visible products), affiliate count, total paid out, status, and whether joining requires an application.get_app_summary— The app’s whole affiliate program at a glance: affiliate counts, lifetime totals (clicks, conversions, renewals, revenue and commission in cents), and payout buckets (pending/payable/paid/refunded) summed across every affiliate (web_traffic apps report per-click earnings here).enroll_affiliate— Embedded affiliate signup: enroll a user as an affiliate by email.get_affiliate— One affiliate’s referral links, lifetime stats (clicks, conversions, renewals, revenue and commission in cents), payout buckets (pending/payable/paid/refunded cents; per-click for web_traffic, with a click_payout object of CPC + approved/payable clicks), and a payout readiness object ({ identity_verified, payouts_enabled }, also on list rows) for gating Verify / Cash out buttons.list_affiliates— List an app’s affiliates, newest first, cursor-paginated: the response carries has_more; pass the last row’s id as starting_after for the next page.list_affiliate_conversions— Conversion history: date, type (subscription, one_time, renewal, trial, refund, chargeback), gross amount and commission in cents, and paid/unpaid status per row, each tagged with the earning affiliate’s ref_code.get_my_summary— The caller’s OWN affiliate program across every business they’ve joined: affiliation counts, lifetime totals (clicks, conversions, renewals, revenue and commission in cents), payout buckets (pending/payable/paid/refunded, including per-click web_traffic earnings), and their account wallet balance.