# Case Convert — REST API endpoint `case-convert`

Convert a string between camelCase, PascalCase, snake_case, kebab-case, SCREAMING_SNAKE, Title Case, Sentence case, lower, UPPER.

- Category: text
- 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/case-convert/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/case-convert/
- Same tool on the other surface: https://findutils.com/mcp/case-convert/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/case-convert/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "hello world",
    "to": "pascal"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/case-convert
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `text` | string | yes | The text to convert. |
| `to` | string (camel \| pascal \| snake \| kebab \| screaming_snake \| title \| sentence \| lower \| upper) | yes | Target case style. |

Example arguments (verified):

```json
{
  "text": "hello world",
  "to": "pascal"
}
```

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:case_convert`. Full MCP reference: https://findutils.com/mcp/case-convert/

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