Unofficial dubco-mcp-server
The (Unofficial) dubco-mcp-server enables AI assistants to manage Dub.co short links via the Model Context Protocol. It provides three MCP tools: create_link for generating new short URLs, update_link for modifying existing links, and delete_link for removing short links.
Overview
The Unofficial Dubco MCP Server is a tool that enables AI assistants to manage Dub.co short links using the Model Context Protocol (MCP). It allows users to create, update, and delete short links through a standardized interface.
To use the server, install it via npm, set up your Dub.co API key as an environment variable, and integrate it with an AI assistant that supports MCP. You can then use commands to manage your short links.
- Create custom short links with Dub.co domains - Update existing short links - Delete short links - Integration with AI assistants via MCP
- Automating the creation of short links for marketing campaigns.
- Updating links in bulk for content management.
- Deleting outdated links to maintain link hygiene.
Add to your AI client
Use these steps to connect Unofficial dubco-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"dubco-mcp-server-npm-gitmaxd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dubco-mcp-server-npm-gitmaxd"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"dubco-mcp-server-npm-gitmaxd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dubco-mcp-server-npm-gitmaxd"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"dubco-mcp-server-npm-gitmaxd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dubco-mcp-server-npm-gitmaxd"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"dubco-mcp-server-npm-gitmaxd": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dubco-mcp-server-npm-gitmaxd"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"dubco-mcp-server-npm-gitmaxd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dubco-mcp-server-npm-gitmaxd"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"dubco-mcp-server-npm-gitmaxd": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dubco-mcp-server-npm-gitmaxd"
]
}
}
}FAQ
**Can I use this server without a Dub.co account?**
No, you need a Dub.co account with API access to use this server.
**Is there a cost associated with using Dub.co?**
The server itself is free, but check Dub.co for any potential costs associated with their services.
**What programming language is this server built with?**
The server is built with JavaScript and requires Node.js to run.