shorten_with_analytics
Shorten long URLs while integrating Google Analytics UTM parameters to track campaign performance. Customize keywords and titles for concise, trackable links using YOURLS-MCP server.
Instructions
Shorten a long URL with Google Analytics UTM parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | No | Optional custom keyword for the short URL | |
title | No | Optional title for the URL | |
url | Yes | The URL to shorten | |
utm_campaign | No | UTM campaign parameter | |
utm_content | No | UTM content parameter | |
utm_medium | Yes | UTM medium parameter | |
utm_source | Yes | UTM source parameter | |
utm_term | No | UTM term parameter |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"keyword": {
"description": "Optional custom keyword for the short URL",
"type": "string"
},
"title": {
"description": "Optional title for the URL",
"type": "string"
},
"url": {
"description": "The URL to shorten",
"type": "string"
},
"utm_campaign": {
"description": "UTM campaign parameter",
"type": "string"
},
"utm_content": {
"description": "UTM content parameter",
"type": "string"
},
"utm_medium": {
"description": "UTM medium parameter",
"type": "string"
},
"utm_source": {
"description": "UTM source parameter",
"type": "string"
},
"utm_term": {
"description": "UTM term parameter",
"type": "string"
}
},
"required": [
"url",
"utm_source",
"utm_medium"
],
"type": "object"
}