# L1NK (remote · l1nk.website)

Short links with QR, custom domains and bot-free click analytics. Create, edit, delete, analyze.

- Trust score: 78/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- remote · `l1nk.website`: 78/100 (this document), [markdown](https://verifymcp.io/servers/website-l1nk-links/api-mcp.md), [page](https://verifymcp.io/servers/website-l1nk-links/api-mcp)

## Channel facts

- Endpoint: `https://l1nk.website/api/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-20.

- **Endpoint Security**: 83/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS enforcement could not be verified: the plaintext port answered with HTTP 405, which proves neither a plaintext path nor enforcement.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 83/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 517 tokens (~86/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 10/100
  - Stability observed for 3 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - All 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation.
  - An AI judge read all 7 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### How do I install the L1NK MCP server?

L1NK is a hosted endpoint at https://l1nk.website/api/mcp, so there is nothing to install locally. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add --transport http website-l1nk-links 'https://l1nk.website/api/mcp'
```

### Cursor

```json
{
  "mcpServers": {
    "website-l1nk-links": {
      "url": "https://l1nk.website/api/mcp"
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "website-l1nk-links": {
      "type": "http",
      "url": "https://l1nk.website/api/mcp"
    }
  }
}
```

### Codex

```toml
[mcp_servers.website-l1nk-links]
url = "https://l1nk.website/api/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "website-l1nk-links": {
      "type": "remote",
      "url": "https://l1nk.website/api/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add website-l1nk-links --url 'https://l1nk.website/api/mcp' --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  website-l1nk-links:
    url: "https://l1nk.website/api/mcp"
```

### Netclaw

```json
{
  "McpServers": {
    "website-l1nk-links": {
      "Transport": "http",
      "Url": "https://l1nk.website/api/mcp"
    }
  }
}
```

### Vellum

```bash
assistant mcp add website-l1nk-links -t streamable-http -u 'https://l1nk.website/api/mcp'
```

### Other

```json
{
  "mcpServers": {
    "website-l1nk-links": {
      "type": "http",
      "url": "https://l1nk.website/api/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-20 (score 78, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-18 (score 77, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-09-17 (score 76)

First indexed and scored.

## MCP tools (6)

### `create_link` (~115 tokens)

Create short link

Create a short link that redirects to a URL. Returns shortUrl, which is what you share.

Input parameters:

- `alias` (string): Optional custom alias (letters, numbers, - and _; max 20).
- `domain_id` (integer): Optional id of a verified custom domain of the account.
- `expires_in_days` (integer): Optional expiry. Pro plan only.
- `name` (string): Optional label to recognise the link in the dashboard.
- `url` (string, required): Destination URL. https:// is added if missing.

### `list_links` (~24 tokens)

List links

List the active (not expired) links of the account with their click counts.

### `get_link` (~51 tokens)

Get link details

Details of one link: destination, clicks, creation and expiry dates, last click and recent click history.

Input parameters:

- `code` (string, required): The short code or custom alias of the link (the part after the slash).

### `update_link` (~102 tokens)

Update link

Change where a link points, set a new expiry (Pro) or remove its expiry. The short code stays the same.

Input parameters:

- `code` (string, required): The short code or custom alias of the link (the part after the slash).
- `expires_in_days` (integer): New expiry, counted from today. Not together with remove_expiration.
- `remove_expiration` (boolean): true to make the link permanent.
- `url` (string): New destination URL.

### `delete_link` (~50 tokens)

Delete link

Delete a link permanently. Anyone opening it afterwards gets "not found". Confirm with the user first.

Input parameters:

- `code` (string, required): The short code or custom alias of the link (the part after the slash).

### `get_analytics` (~60 tokens)

Get click analytics

Click analytics for the whole account: totals, bots, daily series and top links. The plan caps how far back you can look (Free 30 days, Pro 365).

Input parameters:

- `days` (integer): Days to look back. Default 30.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/website-l1nk-links/api-mcp#diagnostics

## Score history

- 2026-09-20: 78
- 2026-09-19: 77
- 2026-09-18: 77
- 2026-09-17: 76

## Common questions

### What is the L1NK MCP server?

L1NK is an MCP server listed in the public MCP registry as website.l1nk/links. Short links with QR, custom domains and bot-free click analytics. Create, edit, delete, analyze. This page covers its hosted endpoint (https://l1nk.website/api/mcp).

### Is the L1NK MCP server safe to use?

L1NK scores 78 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the L1NK MCP server expose?

L1NK exposes 6 tools: create_link, list_links, get_link, update_link, delete_link, get_analytics. Their descriptions and schemas cost roughly 402 tokens of context every time the server is loaded.

### Does the L1NK MCP server require authentication?

Yes. L1NK asked us for credentials when we connected, so you will need to authorise it in your MCP client before it can do anything.

### Is the L1NK MCP server still maintained?

L1NK is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Remote endpoint: https://l1nk.website/api/mcp
- Authorisation metadata: https://l1nk.website/.well-known/oauth-protected-resource/api/mcp
- Website: https://l1nk.website/api/docs#mcp
- Changelog RSS feed: https://verifymcp.io/servers/website-l1nk-links/api-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/website-l1nk-links/api-mcp.json
- HTML version of this page: https://verifymcp.io/servers/website-l1nk-links/api-mcp
