Linkonda
NPM · @VERANOAPP/LINKONDA-MCP · SCANNED AUG 17
Create and manage Linkonda short links and QR codes, with no per-visitor tracking.
Available components
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 0 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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.
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
claude mcp add com-linkonda-mcp -- npx -y @veranoapp/linkonda-mcp
codex mcp add com-linkonda-mcp -- npx -y @veranoapp/linkonda-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"com-linkonda-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"@veranoapp/linkonda-mcp"
],
"enabled": true
}
}
} openclaw mcp add com-linkonda-mcp --command npx --arg -y --arg @veranoapp/linkonda-mcp
mcp_servers:
com-linkonda-mcp:
command: "npx"
args: ["-y", "@veranoapp/linkonda-mcp"] {
"mcpServers": {
"com-linkonda-mcp": {
"command": "npx",
"args": [
"-y",
"@veranoapp/linkonda-mcp"
]
}
}
} 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.
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 |
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.
check_quota Check remaining link allowance ~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 Delete a short 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.
| Name | Type | Req | Description |
|---|---|---|---|
| slug | string | yes | The link's short code (the part after the domain). |
No output schema declared.
No examples provided.
get_link_stats Get a short link's click count ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| slug | string | yes | The link's short code (the part after the domain). |
No output schema declared.
No examples provided.
list_links List my short 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 Shorten a URL ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| expiresInDays | integer | – | Optional. 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. |
| slug | string | – | Optional custom short code. Requires a paid plan; omit it to get a generated one. |
| url | string | yes | The destination URL to shorten. Must be absolute, e.g. https://example.com/page |
No output schema declared.
No examples provided.
shorten_links_bulk Shorten many URLs at once ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| links | array | yes | Up to 100 links to create. |
No output schema declared.
No examples provided.
update_link Update or pause a short 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.
| Name | Type | Req | Description |
|---|---|---|---|
| paused | boolean | – | true to stop the link redirecting, false to resume it. |
| slug | string | yes | The link's short code (the part after the domain). |
| url | string | – | New destination URL. |
No output schema declared.
No examples provided.