# Slug Generate — MCP tool `findutils:slug_generate`

Turn a string into a URL-safe slug (kebab-case by default, Unicode-normalized).

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

## Connect

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

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "slug_generate",
      "arguments": {
        "text": "Hello World"
      }
    }
  }'
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `text` | string | yes | The text to slugify. |
| `separator` | string | no | Word separator. Defaults to "-". Default: `"-"`. |
| `lowercase` | boolean | no | Lowercase the result. Defaults to true. Default: `true`. |

Example arguments (verified):

```json
{
  "text": "Hello World"
}
```

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/slug-generate/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Hello World"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/slug-generate
```

Full REST reference: https://findutils.com/api/slug-generate/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
