expand_url
Expand short URLs to their original long URLs using input from the YOURLS-MCP server, enabling quick and accurate URL retrieval.
Instructions
Expand a short URL to its original long URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shorturl | Yes | The short URL or keyword to expand |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"shorturl": {
"description": "The short URL or keyword to expand",
"type": "string"
}
},
"required": [
"shorturl"
],
"type": "object"
}