Agent Skills
› NeverSight/learn-skills.dev
› short-url
short-url
GitHub通过AceDataCloud API创建短链接。适用于生成分享用的缩短链接或批量创建,支持自定义后缀和过期时间。提供同步响应,无需轮询。
Trigger Scenarios
用户需要将长链接转换为短链接以便分享
用户需要批量创建多个短URL
用户请求使用自定义后缀或设置过期时间的短链接
Install
npx skills add NeverSight/learn-skills.dev --skill short-url -g -y
SKILL.md
Frontmatter
{
"name": "short-url",
"license": "Apache-2.0",
"metadata": {
"author": "acedatacloud",
"version": "1.0"
},
"description": "Create short URLs via AceDataCloud API. Use when generating shortened links for sharing, or batch-creating multiple short URLs at once. Supports custom slugs and expiration.",
"compatibility": "Requires ACEDATACLOUD_API_TOKEN in .env file (see _shared\/authentication.md). Optionally pair with mcp-short-url for tool-use."
}
Short URL Service
Create short URLs through AceDataCloud's URL shortening API.
Setup: See authentication for token setup.
Quick Start
curl -X POST https://api.acedata.cloud/shorturl \
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"content": "https://example.com/very-long-url-path?with=params"}'
Workflows
1. Create a Short URL
POST /shorturl
{
"content": "https://example.com/article/2024/awesome-content"
}
Response:
{
"data": {
"url": "https://suro.id/abc123"
},
"success": true
}
Parameters
| Parameter | Required | Description |
|---|---|---|
content |
Yes | The original long URL to shorten |
Gotchas
- Short URLs use the
suro.iddomain - Results are returned synchronously — no task polling needed
- The
contentfield must be a valid URL to shorten
MCP:
pip install mcp-shorturl| Hosted:https://short-url.mcp.acedata.cloud/mcp| See all MCP servers
Version History
- e0220ca Current 2026-07-05 22:55


