ULink MCP Server
Enables AI assistants to manage ULink deep linking projects, including creating smart links, configuring domains, and viewing analytics.
README
ULink MCP Server
Connect your ULink deep linking projects to Claude Code, Cursor, Windsurf, and other AI assistants.
The Model Context Protocol (MCP) standardizes how Large Language Models (LLMs) talk to external services like ULink. It connects AI assistants directly with your ULink account and allows them to perform tasks like managing projects, creating smart links, configuring domains, and more. See the full list of tools.
Setup
1. Install the MCP server
Choose your MCP client and run the corresponding command:
Claude Code:
claude mcp add ulink -- npx -y @ulinkly/mcp-server@latest
Cursor:
Open Settings > MCP > Add new MCP server, or add to .cursor/mcp.json:
{
"mcpServers": {
"ulink": {
"command": "npx",
"args": ["-y", "@ulinkly/mcp-server@latest"]
}
}
}
Windsurf:
Open Settings > MCP > Add new MCP server, or add to ~/.windsurf/mcp.json:
{
"mcpServers": {
"ulink": {
"command": "npx",
"args": ["-y", "@ulinkly/mcp-server@latest"]
}
}
}
If you don't see your MCP client listed above, check your client's MCP documentation and use the following server command:
npx -y @ulinkly/mcp-server@latest
2. Authenticate
The MCP server shares authentication with the ULink CLI. If you've already logged in via ulink login, the MCP server will use those tokens automatically — no extra login needed.
Otherwise, your MCP client will open a browser window for authentication on first use. Tokens are saved to ~/.ulink/config.json and shared with the CLI. The session persists and tokens refresh automatically.
API Key (alternative)
For CI environments or headless servers, set the ULINK_API_KEY environment variable to skip the browser flow:
Claude Code:
claude mcp add ulink -e ULINK_API_KEY=your-api-key -- npx -y @ulinkly/mcp-server@latest
Manual config:
{
"mcpServers": {
"ulink": {
"command": "npx",
"args": ["-y", "@ulinkly/mcp-server@latest"],
"env": {
"ULINK_API_KEY": "your-api-key"
}
}
}
}
You can generate an API key from the ULink dashboard under Project Settings > API Keys, or by using the create_api_key tool.
3. Start building
Once connected, your AI assistant can manage your ULink projects directly. Try asking it to:
- "List my ULink projects"
- "Create a new smart link for my app"
- "Show click analytics for my latest link"
- "Add a custom domain to my project"
Tools
The following ULink tools are available to the LLM, organized by category.
Project Management
list_projects: Lists all ULink projects owned by or shared with the authenticated user.get_project: Gets detailed information about a specific project, including configuration and membership.create_project: Creates a new project with a name and default fallback URL.update_project: Updates the name or default URL of an existing project.configure_project: Sets platform-specific configuration (iOS bundle ID, Android package name, deeplink schemas, SHA-256 fingerprints).
Link Management
create_link: Creates a unified or dynamic smart link with platform-specific URLs, parameters, and metadata. SupportsallowQueryPassthrough(see below).list_links: Lists all links in a project with pagination.get_link: Gets detailed information about a specific link.update_link: Updates a link's URLs, parameters, or metadata. SupportsallowQueryPassthrough(see below).delete_link: Permanently deletes a link. This is irreversible.get_link_analytics: Gets click analytics for a link, including total clicks and breakdowns by platform, country, and referrer.
Query Passthrough
Both create_link and update_link accept an allowQueryPassthrough boolean field (default: false). When enabled, query parameters appended to the link URL at click time (e.g. https://go.example.com/abc?orderId=123&ref=email) are merged into the resolved link's parameters and override any stored parameter with the same key. Parameter values always arrive as strings. The feature works on both immediate app open and after a deferred install — no SDK change is required.
Validation rules for passthrough parameters: keys must match [A-Za-z0-9_-]{1,64}, a maximum of 25 parameters are allowed, each value must be ≤ 1 024 characters, the total payload must be ≤ 4 KB, and the key debug is reserved.
Domain Management
list_domains: Lists all domains (shared and custom) associated with a project.add_domain: Adds a custom domain to a project. Requires DNS configuration and verification.verify_domain: Triggers DNS verification for a custom domain.delete_domain: Removes a custom domain from a project. Links using this domain will stop working.
API Keys
list_api_keys: Lists all API keys for a project (metadata only, not the key value).create_api_key: Creates a new API key. The full key is only returned once — store it securely.revoke_api_key: Permanently revokes an API key. Applications using this key will immediately lose access.
Account & Billing
get_subscription: Gets a project's subscription plan, status, and renewal date. Accepts an optionalprojectId.list_plans: Lists all available subscription plans with pricing and limits. Accepts an optionalbillingPeriod(monthly/yearly).get_usage: Gets a project's usage statistics for the current billing period (clicks, links, API calls). Accepts an optionalprojectId.
Environment Variables
| Variable | Default | Description |
|---|---|---|
ULINK_API_KEY |
— | API key for authentication (skips browser OAuth flow) |
Requirements
- Node.js 18 or later
Resources
- ULink Documentation: Learn more about ULink's deep linking platform.
- Model Context Protocol: Learn more about MCP and its capabilities.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.