encodeUrl
Convert input data into URL-encoded format using the encoding tool in the MCP server, ensuring compatibility with web standards. Ideal for processing strings in URLs.
Instructions
Encode input data to URL-encoded format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | Data to encode |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "Data to encode",
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}