Dub.co

by gitmaxd

5 stars
3.6k downloads
Not rated
GitHub

About

Provides a streamlined interface for creating, updating, and deleting short links through the Dub.co URL shortening service with robust error handling and automatic domain selection.

Details

Author
gitmaxd
Repository
Gitmaxd/dubco-mcp-server-npm
GitHub stars
5
Downloads
3,628
License
MIT License
Categories
Productivity, Marketing, Design, Developer Tools, AI, Frontend, Infrastructure, Other

- Create custom short links with your Dub.co domains
- Update existing short links
- Delete short links
- Seamless integration with AI assistants through the Model Context Protocol

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Dub.co
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 -y
    • Argument 2 dubco-mcp-server
    Environment
    • DUBCO_API_KEY your_api_key_here

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

To install Dub.co MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @Gitmaxd/dubco-mcp-server-npm --client claude
npm install -g dubco-mcp-server
npm install dubco-mcp-server
npx dubco-mcp-server

This MCP server requires a Dub.co API key to function. You can get your API key from the Dub.co dashboard.

Set the API key as an environment variable:

export DUBCO_API_KEY=your_api_key_here

For persistent configuration, add this to your shell profile (e.g., .bashrc, .zshrc):

echo 'export DUBCO_API_KEY=your_api_key_here' >> ~/.zshrc

Cursor IDE provides native support for MCP servers. Follow these steps to set up the dubco-mcp-server in Cursor:

If you haven't already, download and install Cursor IDE (version 0.4.5.9 or later).

This server provides tools that can be used by AI assistants through the Model Context Protocol. To use it with an MCP-compatible AI assistant, add it to your MCP configuration.

{
  "mcpServers": {
    "dubco": {
      "command": "npx",
      "args": ["-y", "dubco-mcp-server"],
      "env": {
        "DUBCO_API_KEY": "your_api_key_here"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}
npm run dev

create_link

Create a new short link on Dub.co. Parameters: url (string), key (optional string), externalId (optional string), domain (optional string)

update_link

Update an existing short link on Dub.co. Parameters: linkId (string), url (string), domain (optional string), key (optional string)

delete_link

Delete a short link on Dub.co. Parameters: linkId (string)

create_link

Create a new short link on Dub.co.

Parameters:

{
  "url": "https://example.com",
  "key": "optional-custom-slug",
  "externalId": "optional-external-id",
  "domain": "optional-domain-slug"
}

Example:

{
  "url": "https://github.com/gitmaxd/dubco-mcp-server-npm",
  "key": "dubco-mcp"
}

update_link

Update an existing short link on Dub.co.

Parameters:

{
  "linkId": "link-id-to-update",
  "url": "https://new-destination.com",
  "domain": "new-domain-slug",
  "key": "new-custom-slug"
}

Example:

{
  "linkId": "clwxyz123456",
  "url": "https://github.com/gitmaxd/dubco-mcp-server-npm/releases"
}

delete_link

Delete a short link on Dub.co.

Parameters:

{
  "linkId": "link-id-to-delete"
}

Example:

{
  "linkId": "clwxyz123456"
}

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "dub.co": {
            "env": {
                "DUBCO_API_KEY": "your_api_key_here"
            },
            "args": [
                "-y",
                "dubco-mcp-server"
            ],
            "command": "npx"
        }
    }
}

Linux

{
    "env": {
        "DUBCO_API_KEY": "your_api_key_here"
    },
    "args": [
        "-y",
        "dubco-mcp-server"
    ],
    "command": "npx"
}

Macos

{
    "env": {
        "DUBCO_API_KEY": "your_api_key_here"
    },
    "args": [
        "-y",
        "dubco-mcp-server"
    ],
    "command": "npx"
}

Windows

{
    "env": {
        "DUBCO_API_KEY": "your_api_key_here"
    },
    "args": [
        "/c",
        "npx",
        "-y",
        "dubco-mcp-server"
    ],
    "command": "cmd"
}
# Unofficial dubco-mcp-server [![npm version](https://img.shields.io/npm/v/dubco-mcp-server.svg)](https://www.npmjs.com/package/dubco-mcp-server) [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC) [![Node.js Version](https://img.shields.io/node/v/dubco-mcp-server)](https://nodejs.org/) [![smithery badge](https://smithery.ai/badge/@Gitmaxd/dubco-mcp-server-npm)](https://smithery.ai/server/@Gitmaxd/dubco-mcp-server-npm) A Model Context Protocol (MCP) server for creating and managing [Dub.co](https://dub.co) short links (unofficial). This server enables AI assistants to create, update, and delete short links through the Dub.co API. <a href="https://glama.ai/mcp/servers/0tvsbwmk8m"> <img width="380" height="200" src="https://glama.ai/mcp/servers/0tvsbwmk8m/badge" alt="Unofficial dubco-mcp-server MCP server" /> </a> ## 🚀 Features - Create custom short links with your Dub.co domains - Update existing short links - Delete short links - Seamless integration with AI assistants through the Model Context Protocol ## 📋 Prerequisites - Node.js 16.0.0 or higher - A Dub.co account with API access - An API key from the [Dub.co dashboard](https://app.dub.co/settings/api) ## 💻 Installation ### Installing via Smithery To install Dub.co MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@Gitmaxd/dubco-mcp-server-npm): ```bash npx -y @smithery/cli install @Gitmaxd/dubco-mcp-server-npm --client claude ``` ### Global Installation ```bash npm install -g dubco-mcp-server ``` ### Local Installation ```bash npm install dubco-mcp-server ``` ### Direct Usage with npx ```bash npx dubco-mcp-server ``` ## ⚙️ Configuration This MCP server requires a Dub.co API key to function. You can get your API key from the [Dub.co dashboard](https://app.dub.co/settings/api). Set the API key as an environment variable: ```bash export DUBCO_API_KEY=your_api_key_here ``` For persistent configuration, add this to your shell profile (e.g., `.bashrc`, `.zshrc`): ```bash echo 'export DUBCO_API_KEY=your_api_key_here' >> ~/.zshrc ``` ## 🖥️ Cursor IDE Setup Cursor IDE provides native support for MCP servers. Follow these steps to set up the dubco-mcp-server in Cursor: ### Step 1: Install Cursor IDE If you haven't already, download and install [Cursor IDE](https://cursor.sh/) (version 0.4.5.9 or later). ### Step 2: Open Cursor Settings 1. Open Cursor IDE 2. Click on the gear icon in the bottom left corner, or use the keyboard shortcut `Cmd+,` (Mac) or `Ctrl+,` (Windows/Linux) 3. Navigate to the Features section 4. Scroll down to find the "MCP Servers" section ### Step 3: Add the MCP Server 1. Click on "+ Add new MCP server" 2. In the dialog that appears: - **Name**: Enter "Dub.co MCP Server" (or any name you prefer) - **Type**: Select "command" from the dropdown - **Command**: Enter `env DUBCO_API_KEY=your_api_key_here npx -y dubco-mcp-server` (Replace `your_api_key_here` with your actual Dub.co API key) 3. Click "Save" to add the server ### Step 4: Verify the Connection After adding the MCP server, you should see a green status indicator next to the server name. If it shows a red or yellow status, try: 1. Checking that your API key is correct 2. Restarting Cursor IDE 3. Verifying that Node.js (16.0.0+) is properly installed ### Step 5: Using the Server The dubco-mcp-server provides tools that can be used with Cursor's AI features: 1. Open Cursor's Composer or Agent mode (MCP only works in these modes) 2. Explicitly instruct the AI to use the Dub.co tools (create_link, update_link, delete_link) 3. Accept the tool usage prompts when they appear ## 🔧 Usage with MCP This server provides tools that can be used by AI assistants through the Model Context Protocol. To use it with an MCP-compatible AI assistant, add it to your MCP configuration. ### MCP Configuration Example ```json { "mcpServers": { "dubco": { "command": "npx", "args": ["-y", "dubco-mcp-server"], "env": { "DUBCO_API_KEY": "your_api_key_here" }, "disabled": false, "autoApprove": [] } } } ``` ### Available Tools #### create_link Create a new short link on Dub.co. **Parameters:** ```json { "url": "https://example.com", "key": "optional-custom-slug", "externalId": "optional-external-id", "domain": "optional-domain-slug" } ``` **Example:** ```json { "url": "https://github.com/gitmaxd/dubco-mcp-server-npm", "key": "dubco-mcp" } ``` #### update_link Update an existing short link on Dub.co. **Parameters:** ```json { "linkId": "link-id-to-update", "url": "https://new-destination.com", "domain": "new-domain-slug", "key": "new-custom-slug" } ``` **Example:** ```json { "linkId": "clwxyz123456", "url": "https://github.com/gitmaxd/dubco-mcp-server-npm/releases" } ``` #### delete_link Delete a short link on Dub.co. **Parameters:** ```json { "linkId": "link-id-to-delete" } ``` **Example:** ```json { "linkId": "clwxyz123456" } ``` ## 🔍 How It Works The server connects to the Dub.co API using your API key and provides a standardized interface for AI assistants to interact with Dub.co through the Model Context Protocol. When a tool is called: 1. The server validates the input parameters 2. It sends the appropriate request to the Dub.co API 3. It processes the response and returns it in a format that the AI assistant can understand ## 🛠️ Development ### Building from Source ```bash git clone https://github.com/gitmaxd/dubco-mcp-server-npm.git cd dubco-mcp-server-npm npm install npm run build ``` ### Running in Development Mode ```bash npm run dev ``` ## 📝 License This project is licensed under the ISC License - see the [LICENSE](LICENSE) file for details. ## 🔗 Links - [Dub.co](https://dub.co) - The URL shortener service - [Dub.co API Documentation](https://dub.co/docs/api-reference/introduction) - [Model Context Protocol](https://github.com/anthropics/model-context-protocol) - Learn more about MCP ## 👥 Contributing Contributions are welcome! Please feel free to submit a Pull Request. 1. Fork the repository 2. Create your feature branch (`git checkout -b feature/amazing-feature`) 3. Commit your changes (`git commit -m 'Add some amazing feature'`) 4. Push to the branch (`git push origin feature/amazing-feature`) 5. Open a Pull Request ## 👨‍💻 Created By This unofficial Dub.co MCP Server was created by [GitMaxd](https://github.com/gitmaxd) ([@gitmaxd](https://twitter.com/gitmaxd) on X). This project was developed as a learning exercise to understand the Model Context Protocol and how to build MCP servers. I chose Dub.co as the integration target because of its straightforward API and practical utility, making it an ideal candidate for a learning project. While I have no official affiliation with Dub.co, I highly recommend their service for both manual and automated short link creation. Their API is well-documented and easy to work with, making it perfect for this kind of integration. If you find this project helpful or have suggestions for improvements, feel free to reach out or contribute to the repository. Happy link shortening!29:["$","div",null,{"className":"my-8 pb-8 h-f
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.