# Url Encode — REST API endpoint `url-encode`

Percent-encode a string for safe inclusion in URLs.

- Category: encoding
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/url-encode/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/url-encode/
- Same tool on the other surface: https://findutils.com/mcp/url-encode/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/url-encode/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "a b c"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/url-encode
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `text` | string | yes | The raw text to URL-encode. |

Example arguments (verified):

```json
{
  "text": "a b c"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:url_encode`. Full MCP reference: https://findutils.com/mcp/url-encode/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
