Rebrandly MCP Server

Rebrandly offers an official MCP server that connects AI assistants like Claude, Gemini, and GitHub Copilot to your Rebrandly account with

Remote serverstreamable-httpGo

What is the Rebrandly MCP MCP server?

Rebrandly offers an official MCP server that connects AI assistants like Claude, Gemini, and GitHub Copilot to your Rebrandly account with full-featured support for:. Exposed over MCP by the rebrandly mcp mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

This was an early implementation of a Rebrandly MCP server written in Go. It exposed a single create_short_link tool for generating short URLs. The official Rebrandly MCP server supersedes this implementation with a more complete feature set.

Its toolset

Everything the assistant can do here goes through one of these:

  • Analytics — Access click statistics, geographic data, and device information
  • Documentation — The Documentation tool exposed by this server

Configuration

You will need 2 environment variables: REBRANDLY_API_KEY, YOUR_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Rebrandly MCP's toolset — Analytics, Documentation — is a fair guide to whether it matches your workflow. It is maintained by rebrandly; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the rebrandly mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
AnalyticsAccess click statistics, geographic data, and device information
DocumentationThe Documentation tool exposed by this server.

How to install the Rebrandly MCP MCP server

{
  "mcpServers": {
    "rebrandly": {
      "command": "npx",
      "args": [
        "-y",
        "supergateway",
        "--streamableHttp",
        "https://mcp.rebrandly.com/v1/mcp",
        "--header",
        "REBRANDLY_API_KEY:YOUR_API_KEY"
      ]
    }
  }
}

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

Configuration

VariableDescriptionRequired
REBRANDLY_API_KEYCredential the server authenticates with.Yes
YOUR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Rebrandly MCP to Analytics.
  • Use Rebrandly MCP to Documentation.

Frequently asked questions

It connects Rebrandly MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Analytics, Documentation) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Rebrandly MCP directly.