Limelink Mcp Server

by hellovelop

334 downloads
Not rated
GitHub

About

MCP server for managing Limelink dynamic links. Create short links with platform-specific deep linking (iOS/Android), social media previews, and UTM tracking. Retrieve link details by suffix or full URL. Includes

Details

Author
hellovelop
Downloads
334
Categories
Developer Tools, Other, Marketing

- Documentation resources: 15 documentation pages plus index — no API key required
- Two prompt templates for guided link creation and SDK deep linking setup
- Three tools: create dynamic link, look up by suffix, look up by URL (require API key)
- In-memory caching with 1-hour TTL for documentation fetches
- Supports iOS, Android, and web deep linking configuration

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 Limelink Mcp Server
    Command (node, npx, python, etc.)

    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

Install via npx -y limelink-mcp-server or global npm install. Configure in your MCP client’s JSON settings. Set the LIMELINK_API_KEY environment variable to unlock link creation and lookup tools; omit it to use documentation and prompt templates only. No configuration is needed to start exploring LimeLink features.

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "limelink mcp server": {
            "limelink": {
                "command": "npx",
                "args": [
                    "-y",
                    "limelink-mcp-server"
                ]
            }
        }
    }
}

McpServers

{
    "limelink": {
        "command": "npx",
        "args": [
            "-y",
            "limelink-mcp-server"
        ]
    }
}

limelink-mcp-server

npm version
License: MIT

한국어

A Model Context Protocol (MCP) server for LimeLink dynamic link management. Create, look up, and manage dynamic links directly from Claude Code, Claude Desktop, or any MCP-compatible client.

> No API key required to get started! Documentation, SDK setup guides, and prompt templates work without any configuration. Just connect and start exploring LimeLink features with your AI assistant.

Features

- Documentation Resources — Access LimeLink docs (15 pages + index) directly from your AI assistant — no API key needed
- 2 Prompt Templates — Guided workflows for link creation and SDK deep linking setup — no API key needed
- 3 Tools — Create dynamic links, look up by suffix, look up by URL (requires API key)
- In-memory Caching — 1-hour TTL cache for documentation fetches

What works without an API key?

| Feature | Category | API Key | Description |
|---------|----------|:-------:|-------------|
| limelink://docs/index | Resource | Not needed | Full documentation index |
| limelink://docs/{slug} | Resource | Not needed | 15 individual documentation pages |
| setup-deep-linking | Prompt | Not needed | iOS/Android SDK setup guide |
| create-dynamic-link | Prompt | Not needed | Link creation guide (uses create-link tool to execute) |
| create-link | Tool | Required | Create dynamic links via API |
| get-link-by-suffix | Tool | Required | Look up links by suffix |
| get-link-by-url | Tool | Required | Look up links by URL |

Quick Start

Without API Key (Documentation & Guides)

No API key needed. Connect and start exploring LimeLink documentation and setup guides immediately:

{
  "mcpServers": {
    "limelink": {
      "command": "npx",
      "args": ["-y", "limelink-mcp-server"]
    }
  }
}

Try asking your AI assistant:
- "Read the LimeLink getting-started docs"
- "How do I set up deep linking for iOS?"
- "Show me the LimeLink SDK integration guide"

With API Key (Full Features)

Add your API key to unlock link creation and management tools:

{
  "mcpServers": {
    "limelink": {
      "command": "npx",
      "args": ["-y", "limelink-mcp-server"],
      "env": {
        "LIMELINK_API_KEY": "your_api_key_here"
      }
    }
  }
}

Usage with Global Install

npm install -g limelink-mcp-server
{
  "mcpServers": {
    "limelink": {
      "command": "limelink-mcp-server",
      "env": {
        "LIMELINK_API_KEY": "your_api_key_here"
      }
    }
  }
}

Configuration

Claude Code

The easiest way to add the MCP server is using the claude mcp add command:

```bash

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.