picoli-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PICOLI_API_KEY | Yes | Your picoli.site API key | |
| PICOLI_BASE_URL | No | API base URL (for self-hosted instances) | https://picoli.site |
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 URL using picoli.site. Optionally specify a custom slug. Returns the shortened URL and slug. |
| shorten_urlsA | Create multiple short URLs at once (up to 500). Each URL can have an optional custom slug. |
| get_link_statsA | Get click statistics for one or more short links by their slugs. Returns human click counts (bot traffic excluded). |
| list_linksA | List all shortened URLs with their click counts. Supports pagination. |
| get_analyticsA | Get analytics overview: top 10 links by clicks, daily click stats, and total link count. Defaults to last 7 days. |
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 serves a distinct purpose: creating single vs bulk short URLs, retrieving stats for specific links, listing all links, and getting an analytics overview. No ambiguity between them.
All tool names follow a verb_noun snake_case pattern (shorten_url, shorten_urls, get_link_stats, list_links, get_analytics). The verbs and nouns are consistent and predictable.
With 5 tools, the set is well-scoped for a URL shortener API. Each tool covers a necessary function without unnecessary bloat or gaps.
Core operations are covered: creating (single and bulk), listing, and retrieving stats/analytics. Missing delete or update functionality, but this is a minor gap for a typical URL shortener use case.