get_url_keyword
Extract keywords from a long URL to identify its unique short link identifier. Optionally return a single result for precise URL management within the YOURLS-MCP server.
Instructions
Get the keyword(s) for a long URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exactly_one | No | Whether to return only one result (default: false) | |
url | Yes | The URL to find keywords for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exactly_one": {
"description": "Whether to return only one result (default: false)",
"type": "boolean"
},
"url": {
"description": "The URL to find keywords for",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}