Transliterate text to ASCII (Unicode NFKD, diacritics stripped) and collapse it into a URL-safe, hyphenated slug.
Free tier eligible — 500 calls/month with a free key from /pricing; x402 pay-per-call above quota.
| Parameter | Type | Required | Description |
|---|---|---|---|
text | string | required | Text to slugify |
separator | string | optional | Separator character (default '-') |
lowercase | boolean | optional | Lowercase the slug (default true) |
max_length | integer | optional | Truncate the slug to at most this many characters |
curl -s https://wingmanprotocol.com/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "slug_generate", "arguments": {"text": "hello from an agent"}}}'curl -s https://wingmanprotocol.com/tools/slug_generate \
-H 'Content-Type: application/json' \
-d '{"text": "hello from an agent"}'Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/slug_generate from your browser.
X-Payment header, or get a free key at /pricing (500 calls/month, no card, no crypto).