- Home
- MCP servers
- Limelink
Limelink
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"hellovelop-limelink-mcp-server": {
"command": "npx",
"args": [
"-y",
"limelink-mcp-server"
],
"env": {
"LIMELINK_API_KEY": "your_api_key_here",
"LIMELINK_PROJECT_ID": "<LIMELINK_PROJECT_ID>"
}
}
}
}You deploy an MCP server to manage LimeLink dynamic links directly from Claude Code, Claude Desktop, or any MCP-compatible client. This server lets you explore documentation, run guided prompts to create links, and perform lookups, all without or with an API key depending on the features you enable.
How to use
Connect your MCP client to the lime link MCP server to access documentation resources, prompt workflows for link creation and SDK deep linking, and tools that create and query dynamic links. You can start with documentation and prompts without an API key, then enable full features by providing an API key.
How to install
Prerequisites you need before installing: Node.js version 18 or newer and pnpm. These ensure the MCP server can be built and run correctly.
Choose one of the following installation paths. The server can run in a local, stdio-based setup or via an online MCP interface.
{
"mcpServers": {
"limelink": {
"command": "npx",
"args": ["-y", "limelink-mcp-server"]
}
}
}
Configuration notes
Two practical ways to configure your client are shown. The first uses a transient runtime via npx to run the MCP server. The second runs a globally installed binary and can be used after a global install.
{
"mcpServers": {
"limelink": {
"command": "limelink-mcp-server",
"args": []
}
}
}
Available tools
create-link
Create a dynamic link with platform-specific deep linking, social previews, and UTM tracking.
get-link-by-suffix
Look up a dynamic link by its suffix.
get-link-by-url
Look up a dynamic link by its full URL.