npm @veranoapp/linkonda-mcpstdioMITupdated 23d ago
Create and manage Linkonda short links from Claude, Claude Code, Cursor, or any other MCP client.
What can you do with Linkonda?
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 key | With 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" }
}
}
}
| Variable | Default | Purpose |
|---|---|---|
LINKONDA_API_KEY |
(unset) | Bearer key. Omit to run anonymously. |
LINKONDA_API_BASE_URL |
https://api.linkonda.com |
Point at another instance. |
Tools
| Tool | What it does | Key required |
|---|---|---|
shorten_link |
Shorten one URL | No |
shorten_links_bulk |
Shorten up to 100 URLs in one request | Yes |
list_links |
List your links with destinations and click counts | Yes |
update_link |
Change a destination, or pause/resume a link | Yes |
delete_link |
Permanently delete a link | Yes |
get_link_stats |
Total redirect count for a link | No |
check_quota |
Links live vs. plan allowance | No |
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.
Install
Add Linkonda to your client. Pick the one you use.
claude mcp add linkonda-mcp -- npx -y @veranoapp/linkonda-mcpcodex mcp add linkonda-mcp -- npx -y @veranoapp/linkonda-mcpamp mcp add linkonda-mcp -- npx -y @veranoapp/linkonda-mcp{
"mcpServers": {
"linkonda-mcp": {
"command": "npx",
"args": [
"-y",
"@veranoapp/linkonda-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"linkonda-mcp": {
"command": "npx",
"args": [
"-y",
"@veranoapp/linkonda-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"linkonda-mcp","command":"npx","args":["-y","@veranoapp/linkonda-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"linkonda-mcp": {
"command": "npx",
"args": [
"-y",
"@veranoapp/linkonda-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"linkonda-mcp": {
"command": "npx",
"args": [
"-y",
"@veranoapp/linkonda-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"linkonda-mcp": {
"command": "npx",
"args": [
"-y",
"@veranoapp/linkonda-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"linkonda-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@veranoapp/linkonda-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"linkonda-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@veranoapp/linkonda-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @veranoapp/linkonda-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
7 tools
Linkonda exposes 7 tools to a connected agent.
- shorten_link
- Shorten one URL
- shorten_links_bulk
- Shorten up to 100 URLs in one request
- list_links
- List your links with destinations and click counts
- update_link
- Change a destination, or pause/resume a link
- delete_link
- Permanently delete a link
- get_link_stats
- Total redirect count for a link
- check_quota
- Links live vs. plan allowance
Score
81 / 100
Excellent
- Documentation22/25
- Maintenance25/25
- Trust16/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 16 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 7 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.3Latest | Aug 16, 2026 |
| 0.1.2 | Aug 16, 2026 |
| 0.1.1 | Aug 15, 2026 |