Skip to main content
Glama
paladini

devutils-mcp-server

url_encode

Convert strings into URL-safe format by applying percent-encoding to special characters for web compatibility.

Instructions

URL-encode a string (percent-encoding).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputYesThe string to URL-encode

Implementation Reference

  • Registration and handler implementation for the `url_encode` tool.
    server.tool(
      "url_encode",
      "URL-encode a string (percent-encoding).",
      { input: z.string().describe("The string to URL-encode") },
      async ({ input }) => ({
        content: [{ type: "text" as const, text: encodeURIComponent(input) }],
      })
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/paladini/devutils-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server