@cliqo/mcp
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CLIQO_API_KEY | Yes | Your cliqo API key, sent as a Bearer token. | |
| CLIQO_BASE_URL | No | Override the API base URL (defaults to https://api.cliqo.link). Useful for staging/self-hosted instances. | https://api.cliqo.link |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| shorten_urlB | Create a short link for a URL. Consumes one credit. Returns the created link including its short URL and id. |
| list_linksC | List your short links (newest first). By default only active links are returned. |
| get_linkA | Fetch a single short link by its numeric id. |
| delete_linkA | Revoke (delete) a short link by its numeric id. The short URL stops resolving. This cannot be undone. |
| get_creditsA | Check how many link credits remain on your account. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: delete, get credits, get a single link, list links, and shorten a URL. No overlap or ambiguity.
All tool names follow a consistent verb_noun snake_case pattern (e.g., delete_link, list_links, shorten_url), making them predictable and easy to understand.
With 5 tools, the set is well-scoped for a URL shortener service, covering the essential operations without being excessive or insufficient.
The tools provide complete CRUD for links (create, read, list, delete) plus a credit check, leaving no obvious gaps for the domain.