limelink-mcp-server
MCP server for LimeLink dynamic link management, enabling creation, lookup, and management of dynamic links with documentation resources and prompt templates.
README
limelink-mcp-server
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:
# 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)
Claude Desktop & other MCP clients
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 |
Environment Variables
| 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.
Tools
create-link
Create 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-suffix
Look 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-url
Look up a dynamic link by its full URL. Automatically extracts the suffix from both URL formats:
- Free plan:
https://deep.limelink.org/{suffix} - Pro plan:
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) |
Resources
limelink://docs/index
Returns 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
Prompts
create-dynamic-link
Guided 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-linking
Guided workflow for setting up LimeLink SDK deep linking.
| Argument | Type | Required | Description |
|---|---|---|---|
platform |
enum | Yes | ios, android, or both |
Development
Prerequisites
- Node.js >= 18
- pnpm
Setup
git clone https://github.com/hellovelop/limelink-mcp-server.git
cd limelink-mcp-server
pnpm install
pnpm run build
Run locally
LIMELINK_API_KEY=your_key node dist/index.js
Testing
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
Project Structure
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
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。