DWZ Short URL MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | 日志级别 | info |
| API_VERSION | No | API版本 | v1 |
| MAX_RETRIES | No | 最大重试次数 | 3 |
| REMOTE_API_KEY | Yes | API密钥 | |
| REMOTE_BASE_URL | Yes | 远程短网址服务地址 | |
| REQUEST_TIMEOUT | No | 请求超时时间(ms) | 10000 |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_short_urlC | 创建一个新的短网址。支持自定义域名、短代码、标题和描述信息。 |
| get_url_infoC | 根据短网址ID获取详细信息,包括原始URL、点击统计、创建时间等。 |
| list_short_urlsB | 列出用户的短网址列表,支持分页、域名筛选和关键词搜索。 |
| delete_short_urlA | 删除指定的短网址。删除后无法恢复,请谨慎操作。 |
| batch_create_short_urlsB | 批量创建多个短网址,提高创建效率。最多支持50个URL。 |
| list_domainsB | 获取所有可用的域名列表,包括域名配置信息和状态。 |
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 6 tools
Each tool has a clearly distinct purpose with no overlap. Batch creation, single creation, deletion, info retrieval, domain listing, and URL listing all target specific operations in the short URL domain, making misselection unlikely.
All tools follow a consistent verb_noun pattern with snake_case (e.g., create_short_url, list_domains). The naming is predictable and readable across all six tools.
Six tools is well-scoped for a short URL management server. It covers core CRUD operations (create, get, delete, list) plus domain management and batch creation, with each tool earning its place without bloat.
The toolset provides strong coverage for short URL lifecycle management, including creation, deletion, listing, and info retrieval, plus domain handling. A minor gap is the lack of an update tool for modifying existing short URLs, but agents can work around this by deletion and recreation.