Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

Linkonda

NPM · @VERANOAPP/LINKONDA-MCP · SCANNED AUG 17

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

70 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 30 of 95 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability81
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 534 tokens (~76/item across 7 items; 7 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @veranoapp/linkonda-mcp

# add to Claude Code
claude mcp add com-linkonda-mcp -- npx -y @veranoapp/linkonda-mcp
# add to Codex CLI
codex mcp add com-linkonda-mcp -- npx -y @veranoapp/linkonda-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-linkonda-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@veranoapp/linkonda-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add com-linkonda-mcp --command npx --arg -y --arg @veranoapp/linkonda-mcp
# ~/.hermes/config.yaml
mcp_servers:
  com-linkonda-mcp:
    command: "npx"
    args: ["-y", "@veranoapp/linkonda-mcp"]
// mcp.json
{
  "mcpServers": {
    "com-linkonda-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@veranoapp/linkonda-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 16 Aug 26 70

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 17 Aug 2026 · Analysed npm/@veranoapp/linkonda-mcp@0.1.3

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 95 packages
Packages resolved 95
Stale 30
Tree resolution Complete
MCP tools · 7 exposed · ~534 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
check_quota ~44

Report how many links are live and how many the current plan allows. Without an API key this reports the anonymous allowance. Use it before a bulk create to check for room.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

delete_link ~69

Permanently delete a short link. The short URL stops working immediately and anyone who already has it will get a 404 — prefer update_link with paused:true if it might be needed again. Requires an API key.

NameTypeReqDescription
slugstringyesThe link's short code (the part after the domain).

No output schema declared.

No examples provided.

get_link_stats ~78

Return the total number of times a short link has been followed. This is the only click data that exists — Linkonda stores no per-visitor information, so there is no geographic, device, or referrer breakdown to report. No API key needed.

NameTypeReqDescription
slugstringyesThe link's short code (the part after the domain).

No output schema declared.

No examples provided.

list_links ~30

List the short links on the authenticated account, with their destinations and total redirect counts. Requires an API key.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

shorten_link ~168

Create a short link for a URL. Works without an API key (anonymous links expire and are not saved to an account). Linkonda records only a total redirect count per link — no IP addresses, geolocation, device data, or referrers. Use when the user wants a short or shareable URL, or a link for a QR code.

NameTypeReqDescription
expiresInDaysintegerOptional. Delete the link automatically after this many days. Requires a Pro or Enterprise plan — omit it on other plans, where the plan's own lifetime applies.
slugstringOptional custom short code. Requires a paid plan; omit it to get a generated one.
urlstringyesThe destination URL to shorten. Must be absolute, e.g. https://example.com/page

No output schema declared.

No examples provided.

shorten_links_bulk ~53

Create up to 100 short links in a single request. Requires an API key. Use this instead of calling shorten_link repeatedly when shortening several URLs.

NameTypeReqDescription
linksarrayyesUp to 100 links to create.

No output schema declared.

No examples provided.

update_link ~92

Change a short link's destination, or pause/resume it. A paused link stops redirecting but is not deleted. Requires an API key. Changing the destination requires a paid plan.

NameTypeReqDescription
pausedbooleantrue to stop the link redirecting, false to resume it.
slugstringyesThe link's short code (the part after the domain).
urlstringNew destination URL.

No output schema declared.

No examples provided.