Utilities
One pass replaces bit.ly + Campaign URL Builder + QR generator: GA4-validated UTM parameters, a deterministic self-hosted short link (FNV-1a base62 slug), QR pair, redirect snippets and a tracking CSV row.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/short-url-utm-builder-qr-bundle' \
-H 'Content-Type: application/json' \
-d '{"destinationUrl":"acme.dev/pricing","utmSource":"newsletter","utmMedium":"email","utmCampaign":"spring-launch-2026","utmContent":"hero-cta","utmTerm":"","utmId":"","lowercaseUtm":true,"shortDomain":"go.acme.dev","customSlug":"","qrEcc":"M","qrSize":480}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/short-url-utm-builder-qr-bundle| Name | Type | Required | Description |
|---|---|---|---|
| destinationUrl | text | Yes | — |
| utmSource | text | Yes | — |
| utmMedium | text | Yes | — |
| utmCampaign | text | Yes | — |
| utmContent | text | No | — |
| utmTerm |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-short-url-utm-builder-qr-bundle": {
"name": "short-url-utm-builder-qr-bundle",
"description": "One pass replaces bit.ly + Campaign URL Builder + QR generator: GA4-validated UTM parameters, a deterministic self-hosted short link (FNV-1a base62 slug), QR pair, redirect snippets and a tracking CSV row.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=short-url-utm-builder-qr-bundle",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "short-url-utm-builder-qr-bundle",
"arguments": {
"destinationUrl": "acme.dev/pricing",
"utmSource": "newsletter",
"utmMedium": "email",
"utmCampaign": "spring-launch-2026",
"utmContent": "hero-cta",
"utmTerm": "",
"utmId": "",
"lowercaseUtm": true,
"shortDomain": "go.acme.dev",
"customSlug": "",
"qrEcc": "M",
"qrSize": 480
}
}
}| text |
| No |
| — |
| utmId | text | No | — |
| lowercaseUtm | checkbox | No | — |
| shortDomain | text | No | — |
| customSlug | text | No | — |
| qrEcc | select | No | — |
| qrSize | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]