Refgrow MCP Server

Model Context Protocol server for Refgrow affiliate program management API

Local serverstdioGo

What is the Refgrow MCP MCP server?

Most developer tooling work still happens through a UI a human drives. Refgrow MCP MCP server moves it into the conversation instead. Model Context Protocol server for Refgrow affiliate program management API.

The short version

A Model Context Protocol (MCP) server that wraps the Refgrow REST API. This allows AI agents -- Claude Desktop, Cursor, ChatGPT, and other MCP-compatible clients -- to manage your affiliate program directly.

Getting it running

@refgrow/mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

The server publishes 7 tools. What each one is for:

  • Name — ** refgrow
  • Command — ** npx -y @refgrow/mcp
  • Environment — ** REFGROW_API_KEY=rgk_your_api_key_here
  • Affiliates — The Affiliates tool exposed by this server
  • Referrals — The Referrals tool exposed by this server
  • Conversions — The Conversions tool exposed by this server
  • Coupons — The Coupons tool exposed by this server

What it needs from you

Configuration is passed through the environment: REFGROW_API_KEY, REFGROW_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18+ - A Refgrow account with an API key (generated in project settings) - API keys start with rgk_

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Refgrow MCP's toolset — Name, Command, Environment and 4 more — is a fair guide to whether it matches your workflow. It is maintained by refgrow; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
Name** refgrow
Command** npx -y @refgrow/mcp
Environment** REFGROW_API_KEY=rgk_your_api_key_here
AffiliatesThe Affiliates tool exposed by this server.
ReferralsThe Referrals tool exposed by this server.
ConversionsThe Conversions tool exposed by this server.
CouponsThe Coupons tool exposed by this server.

How to install the Refgrow MCP MCP server

{
  "mcpServers": {
    "refgrow": {
      "command": "npx",
      "args": ["-y", "@refgrow/mcp"],
      "env": {
        "REFGROW_API_KEY": "rgk_your_api_key_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 18+ - A Refgrow account with an API key (generated in project settings) - API keys start with rgk_
VariableDescriptionRequired
REFGROW_API_KEYCredential the server authenticates with.Yes
REFGROW_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Refgrow MCP to Name.
  • Use Refgrow MCP to Command.
  • Use Refgrow MCP to Environment.

Frequently asked questions

It connects Refgrow MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Name, Command, Environment, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Refgrow MCP directly.