Creates short URLs via AceDataCloud API for sharing or batch-generation. Supports custom slugs and expiration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/acedatacloud-ai-media:short-urlThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create short URLs through AceDataCloud's URL shortening API.
Create short URLs through AceDataCloud's URL shortening API.
Setup: See authentication for token setup.
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"}'
POST /shorturl
{
"content": "https://example.com/article/2024/awesome-content"
}
Response:
{
"data": {
"url": "https://suro.id/abc123"
},
"success": true
}
| Parameter | Required | Description |
|---|---|---|
content | Yes | The original long URL to shorten |
suro.id domaincontent field must be a valid URL to shortenMCP:
pip install mcp-shorturl| Hosted:https://short-url.mcp.acedata.cloud/mcp| See all MCP servers
npx claudepluginhub acedatacloud/skills --plugin acedatacloud-ai-toolsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.