Back to Browse

NanoLink MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Create and manage Linkonda short links and QR codes, with no per-visitor tracking.

About

Create and manage Linkonda short links and QR codes, with no per-visitor tracking.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

4 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Linkonda API key (paid plans). Optional — without it the server still shortens URLs anonymously, but links expire and account tools are unavailable.Required

Environment variable: LINKONDA_API_KEY

Override the API host. Defaults to https://api.linkonda.com.Optional

Environment variable: LINKONDA_API_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "com-linkonda-mcp": {
      "env": {
        "LINKONDA_API_KEY": "your-linkonda-api-key-here",
        "LINKONDA_API_BASE_URL": "your-linkonda-api-base-url-here"
      },
      "args": [
        "-y",
        "@veranoapp/linkonda-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Linkonda MCP server

Create and manage Linkonda short links from Claude, Claude Code, Cursor, or any other MCP client.

Linkonda records a total redirect count per link and nothing else — no IP addresses, geolocation, device data, or referrers. That matters more than usual for an agent, which can generate links in bulk without building a visitor dataset you then have to secure, retain, and answer requests about.

Works without an API key

Most shortener MCP servers refuse to start without credentials. This one shortens URLs immediately on install: anonymous links are capped per network and expire after 30 days. Add a key when you want links that persist and can be managed.

No keyWith LINKONDA_API_KEY
shorten_link✅ 10 links, expire after 30 days✅ permanent, saved to your account
get_link_stats
check_quota✅ anonymous allowance✅ your plan
shorten_links_bulk, list_links, update_link, delete_link

Bearer authentication requires a paid plan — see pricing. Create a key in the dashboard under API keys; it is shown once.

Install

Add to your MCP client config (Claude Desktop: claude_desktop_config.json; Claude Code: .mcp.json):

{
  "mcpServers": {
    "linkonda": {
      "command": "npx",
      "args": ["-y", "@veranoapp/linkonda-mcp"]
    }
  }
}

To use an API key, add it to the same entry:

{
  "mcpServers": {
    "linkonda": {
      "command": "npx",
      "args": ["-y", "@veranoapp/linkonda-mcp"],
      "env": { "LINKONDA_API_KEY": "lk_your_key_here" }
    }
  }
}
VariableDefaultPurpose
LINKONDA_API_KEY(unset)Bearer key. Omit to run anonymously.
LINKONDA_API_BASE_URLhttps://api.linkonda.comPoint at another instance.

Tools

ToolWhat it doesKey required
shorten_linkShorten one URLNo
shorten_links_bulkShorten up to 100 URLs in one requestYes
list_linksList your links with destinations and click countsYes
update_linkChange a destination, or pause/resume a linkYes
delete_linkPermanently delete a linkYes
get_link_statsTotal redirect count for a linkNo
check_quotaLinks live vs. plan allowanceNo

shorten_links_bulk is partial-success: some entries can fail (quota, invalid URL) while others are created, and the tool reports both lists rather than only the successes.

What you cannot get

There is no per-visitor data to return, so there are no tools for geographic, device, or referrer breakdowns — that data is never collected. If your workflow needs click attribution, a tracking shortener is the right tool; see the comparisons.

Development

npm install
npm run build
LINKONDA_API_KEY=lk_... npm start   # speaks MCP over stdio

npm run typecheck runs the compiler without emitting.

Reviews

No reviews yet

Be the first to review this server!