opn-mcp
This server lets AI assistants manage and analyze short links on the opn.onl URL shortener platform through natural language.
Shorten URLs: Create short links with optional custom alias/slug, title, password protection, and expiry timestamp.
List Links: Retrieve your short links (most recent first) with pagination (limit/offset) and text search filtering across URL, title, notes, or code.
Get Link Analytics: View detailed click statistics for any link, including geography, device types, browsers, and referrers.
Update Links: Modify an existing link's destination URL, title, password, or expiry date.
Delete Links: Permanently remove a short link by its ID.
Generate QR Codes: Produce QR code images (PNG or SVG) with optional branding — custom hex foreground color and centre logo overlay.
Check URL Health: Verify that a destination URL is reachable (returns status and response time) before shortening it.
opn-mcp
An MCP server for opn.onl — the open-source, self-hostable URL shortener. It lets AI assistants (Claude Desktop, Cursor, etc.) shorten links, read analytics, generate QR codes, and manage links in natural language.
Works against the hosted service or your own self-hosted instance.
Setup
1. Get an API key
On your opn.onl instance, go to Settings → API Keys, create a key, and copy it (it starts with opn_ and is shown once).
2. Add the server to your MCP client
Claude Desktop — edit claude_desktop_config.json (~/Library/Application Support/Claude/ on macOS, %APPDATA%\Claude\ on Windows):
{
"mcpServers": {
"opn": {
"command": "npx",
"args": ["-y", "opn-mcp"],
"env": {
"OPN_API_KEY": "opn_your_key_here"
}
}
}
}Restart your client. That's it — it talks to the hosted API (https://l.opn.onl) by default.
Not published to npm yet? Use the GitHub source instead — same config, just swap the
args:"args": ["-y", "github:ysalitrynskyi/opn-mcp"](it builds on install).
Self-hosted instance
Point OPN_BASE_URL at your own instance's API host:
{
"mcpServers": {
"opn": {
"command": "npx",
"args": ["-y", "opn-mcp"],
"env": {
"OPN_API_KEY": "opn_your_key_here",
"OPN_BASE_URL": "https://l.your-domain.com"
}
}
}
}Related MCP server: ShortURLMCP
Configuration
Env var | Required | Default | Description |
| ✅ | — | Your API key ( |
| — |
| API base URL — set this for a self-hosted instance |
Tools
Tool | Description |
| Create a short link (url, optional alias / title / expiry / password) |
| List your links (limit, offset, search) |
| Click analytics for a link (geo, devices, browsers, referrers) |
| Update a link's destination, title, expiry or password |
| Delete a link |
| Get a link's QR image — optional brand colour, centre logo, PNG/SVG |
| Check a destination URL is reachable before shortening |
Example prompts
"Shorten https://example.com/very/long/url and call it launch-2026"
"How many clicks did link 42 get, and from which countries?"
"Give me a branded SVG QR code for link 42"
"List my last 10 links"
Development
npm install
npm run build # tsc → dist/
npm test # vitest
OPN_API_KEY=opn_… npm run dev # run from source (stdio)License
MIT © ysalitrynskyi. Part of the opn.onl project.
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ysalitrynskyi/opn-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server