Server data from the Official MCP Registry
MCP server for Limelink dynamic links with deep linking, social previews, and UTM tracking
MCP server for Limelink dynamic links with deep linking, social previews, and UTM tracking
Valid MCP server (1 strong, 1 medium validity signals). 4 code issues detected. 3 known CVEs in dependencies (0 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry. 4 finding(s) downgraded by scanner intelligence.
7 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Set these up before or after installing:
Environment variable: LIMELINK_API_KEY
Environment variable: LIMELINK_PROJECT_ID
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-hellovelop-limelink-mcp-server": {
"env": {
"LIMELINK_API_KEY": "your-limelink-api-key-here",
"LIMELINK_PROJECT_ID": "your-limelink-project-id-here"
},
"args": [
"-y",
"limelink-mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
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.
| 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 |
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:
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"
}
}
}
}
npm install -g limelink-mcp-server
{
"mcpServers": {
"limelink": {
"command": "limelink-mcp-server",
"env": {
"LIMELINK_API_KEY": "your_api_key_here"
}
}
}
}
The easiest way to add the MCP server is using the claude mcp add command:
# Without API key (docs & guides only)
claude mcp add --scope user --transport stdio limelink -- npx -y limelink-mcp-server
# With API key (full features)
claude mcp add --scope user --transport stdio limelink \
--env LIMELINK_API_KEY=your_api_key_here \
-- npx -y limelink-mcp-server
Scope options:
--scope user — Available in all projects--scope project — Saved to .mcp.json (shareable with team via Git)Add the JSON config to your client's config file:
| Client | Config File |
|---|---|
| Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json |
| Variable | Required | Default | Description |
|---|---|---|---|
LIMELINK_API_KEY | No | — | API key for link management tools. Documentation resources and prompt templates work without it. |
LIMELINK_PROJECT_ID | No | — | Default project ID (used when not specified in tool calls) |
You can get your API key from the LimeLink Dashboard. Without an API key, documentation resources, SDK setup guides, and prompt templates are fully available.
create-linkCreate a dynamic link with platform-specific deep linking, social previews, and UTM tracking.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
dynamic_link_suffix | string | Yes | Short URL path identifier (max 50) |
dynamic_link_url | string | Yes | Target URL (max 500) |
dynamic_link_name | string | Yes | Link name (max 100) |
project_id | string | No | Project ID (falls back to env) |
stats_flag | boolean | No | Enable analytics tracking |
apple_options | object | No | iOS deep linking options |
android_options | object | No | Android deep linking options |
additional_options | object | No | Social preview + UTM options |
Example usage in Claude:
"Create a dynamic link for https://example.com/product/123 with suffix 'product-123' and enable analytics"
get-link-by-suffixLook up a dynamic link by its suffix.
| Parameter | Type | Required | Description |
|---|---|---|---|
suffix | string | Yes | Dynamic link suffix |
project_id | string | No | Project ID (falls back to env) |
get-link-by-urlLook up a dynamic link by its full URL. Automatically extracts the suffix from both URL formats:
https://deep.limelink.org/{suffix}https://{project}.limelink.org/link/{suffix}| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Full LimeLink dynamic link URL |
project_id | string | No | Project ID (falls back to env) |
limelink://docs/indexReturns the full LimeLink documentation index (llms.txt).
limelink://docs/{slug}Returns individual documentation pages. Available slugs:
introduction, getting-started, project, application, dynamic-link, create-link, link-detail, link-management, appearance, sdk-integration, ios-sdk, android-sdk, api-integration, advanced, llm-agent
Example usage in Claude:
"Read the LimeLink API integration docs"
Claude will access
limelink://docs/api-integration
create-dynamic-linkGuided workflow for creating a dynamic link.
| Argument | Type | Required | Description |
|---|---|---|---|
target_url | string | Yes | Destination URL |
suffix | string | No | Custom suffix |
platforms | enum | Yes | ios, android, both, or web |
setup-deep-linkingGuided workflow for setting up LimeLink SDK deep linking.
| Argument | Type | Required | Description |
|---|---|---|---|
platform | enum | Yes | ios, android, or both |
git clone https://github.com/hellovelop/limelink-mcp-server.git
cd limelink-mcp-server
pnpm install
pnpm run build
LIMELINK_API_KEY=your_key node dist/index.js
pnpm test # Unit tests
pnpm test:e2e # E2E tests (MCP stdio communication)
pnpm test:watch # Unit tests in watch mode
pnpm test:coverage # Coverage report
src/
├── index.ts # Entry point
├── lib/
│ ├── config.ts # Environment variable loading
│ ├── cache.ts # In-memory TTL cache
│ ├── api-client.ts # LimeLink API HTTP client
│ └── doc-fetcher.ts # Documentation fetcher with caching
├── tools/
│ ├── create-link.ts # create-link tool
│ ├── get-link-by-suffix.ts
│ └── get-link-by-url.ts
├── resources/
│ └── documentation.ts # Documentation resources
└── prompts/
├── create-link-prompt.ts
└── deep-link-prompt.ts
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace · Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm — conversationally
by mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.