Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"limelink": {
"args": [
"-y",
"limelink-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'limelink-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked limelink-mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP server for the PostFast API — schedule and manage social media posts via AI tools
Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
MCP Security Weekly
Get CVE alerts and security updates for io.github.hellovelop/limelink-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 |