AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Cliqo Mcp

mcp-cliqo-link-cliqo-mcp · by cliqo-link

A Model Context Protocol server for cliqo.link — a pay-per-use (credits) link shortener.

No reviews yet
0 installs
41 views
0.0% view→install

Install

$ agentstack add mcp-cliqo-link-cliqo-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-cliqo-link-cliqo-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Cliqo Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

@cliqo/mcp

[](https://smithery.ai/servers/cliqo/cliqo-mcp)

[](https://glama.ai/mcp/servers/cliqo-link/cliqo-mcp)

A Model Context Protocol server for cliqo.link — a pay-per-use (credits) link shortener.

It lets any MCP client (Claude Desktop, Claude Code, etc.) create short links, list/get/revoke them, and check your remaining credit balance.

The server is a thin wrapper over the public cliqo v1 REST API — see the machine-readable reference at .

Prerequisites

  • Node.js >= 18
  • A cliqo API key. Create one in the dashboard under API keys — it is shown only once. The key's scopes determine which tools work:
  • links:readlist_links, get_link
  • links:writeshorten_url
  • links:deletedelete_link
  • billing:readget_credits

Tools

| Tool | Description | Scope | | --- | --- | --- | | shorten_url | Create a short link for a URL. Consumes one credit. | links:write | | list_links | List your links (newest first). Optionally include revoked links or filter by tag. | links:read | | get_link | Fetch a single link by its numeric id. | links:read | | delete_link | Revoke (delete) a link by id. Cannot be undone. | links:delete | | get_credits | Check how many link credits remain. | billing:read |

Usage

Set the CLIQO_API_KEY environment variable to your API key. The server speaks MCP over stdio.

Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "cliqo": {
      "command": "npx",
      "args": ["-y", "@cliqo/mcp"],
      "env": {
        "CLIQO_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add cliqo --env CLIQO_API_KEY=your-api-key -- npx -y @cliqo/mcp

Run directly

CLIQO_API_KEY=your-api-key npx -y @cliqo/mcp

Environment variables

| Variable | Required | Description | | --- | --- | --- | | CLIQO_API_KEY | yes | Your cliqo API key, sent as a Bearer token. |

Development

npm install
npm run build      # compile TypeScript to dist/
npm run watch      # recompile on change
npm start          # run the built server

The source lives in src/:

  • client.ts — thin HTTP client for the cliqo REST API.
  • index.ts — MCP server wiring and tool definitions.

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.