The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Limelink MCP Server listing page.
한국어 · Documentation · Capability reference
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 and SDK setup guides work without any configuration. Just connect and start exploring LimeLink features with your AI assistant.
@limelink/mcp; global executable: limelink-mcpSee installation and configuration and network behavior for the complete operational contract.
| Feature | Category | API Key | Description |
|---|---|---|---|
limelink://docs/index | Resource | Not needed | Full documentation index |
limelink://docs/{slug} | Resource | Not needed | 15 individual documentation pages |
list-profiles | Tool | Not needed | List locally configured profile aliases without contacting the API |
list-projects | Tool | Required | List Projects for a selected Organization profile |
list-custom-domains | Tool | Required | List Custom Domains for a selected Project |
create-link | Tool | Required | Create V2 Core 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:
Try asking your AI assistant:
Create the version 1 profile file shown below and pass its absolute path:
The easiest way to add the MCP server is using the claude mcp add command:
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_PROFILES_FILE | No | — | Path to a version 1 JSON file containing named Organization credential profiles. |
LIMELINK_API_KEY and LIMELINK_PROJECT_ID are ignored. When no credential profile is configured, API-backed tools direct the agent to Organizations to issue an Organization API key and configure the profile file. Project-backed tools accept a Project UUID directly. A profile's optional projects map is a recommended convenience for repeatedly used Projects, not a prerequisite; add aliases after list-projects discovery if useful. Profiles initialize lazily through credential introspection on their first API-backed call. Profile-file changes, including alias additions, require an MCP server restart.
You can get your API key from the LimeLink Dashboard. Without an API key, documentation resources and SDK setup guides are fully available.
list-profilesLists configured aliases, Organization labels, default status, and current initialization status without contacting the API. Already initialized profiles include scopes. API key values remain secret and are never returned. Organization, Project, Custom Domain and credential identifiers and key prefixes are non-secret identifiers and may appear in API-backed tool responses when useful.
list-projectsLists Projects in the Organization discovered from the selected profile's credential. Accepts optional profile; the credential requires projects:read.
list-custom-domainsLists Custom Domains for required project (alias or UUID). Accepts optional profile; the credential requires domains:read.
create-linkCreate a V2 Core Link with platform-specific deep linking, Custom Domain selection, social previews, and UTM tracking.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
dynamic_link_suffix | string | No | Short URL path identifier (1–100); API-generated when omitted |
dynamic_link_url | string | Yes | Target URL (max 500) |
dynamic_link_name | string | Yes | Link name (max 100) |
project | string | Yes | Project alias in the selected profile or Project UUID |
profile | string | No | Profile alias; otherwise uses configured default or sole profile |
custom_domain_id | UUID string | No | Custom Domain for the Core Link |
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 | string | Yes | Project alias in the selected profile or Project UUID |
profile | string | No | Profile alias; otherwise uses configured default or sole profile |
get-link-by-urlResolve a Link through the V2 API using its full URL. The backend determines whether the URL belongs to a Free default namespace, Project hostname, or active Custom Domain. No Project selector or local suffix parsing is required.
The URL must be absolute HTTPS with exactly one /{suffix} path segment and no query, fragment, explicit port, or credentials.
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Full LimeLink URL to resolve (max 2048 characters) |
profile | string | No | Profile alias; otherwise uses configured default or sole profile |
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
MIT