create_custom_url
Generate custom short URLs with specific keywords, even for existing links. Modify URLs by force if needed, and optionally add titles for clarity using this tool.
Instructions
Create a custom short URL with a specific keyword, even for URLs that already exist in the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force_url_modification | No | Whether to force URL modification to allow duplicates | |
keyword | Yes | The custom keyword for the short URL | |
title | No | Optional title for the URL | |
url | Yes | The URL to shorten |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"force_url_modification": {
"description": "Whether to force URL modification to allow duplicates",
"type": "boolean"
},
"keyword": {
"description": "The 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"
}
},
"required": [
"url",
"keyword"
],
"type": "object"
}