convert_case

Pack: textcase · Endpoint: https://gateway.pipeworx.io/textcase/mcp

Convert text to a target case: camel, pascal, snake, kebab, constant, title, sentence, lower, upper, dot, or slug (keyless, offline).

Parameters

NameTypeRequiredDescription
textstringyesThe text to convert.
targetstringyesTarget case: camel | pascal | snake | kebab | constant | title | sentence | lower | upper | dot | slug.

Example call

Arguments

{
  "text": "hello world example",
  "target": "camel"
}

curl

curl -X POST https://gateway.pipeworx.io/textcase/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"convert_case","arguments":{"text":"hello world example","target":"camel"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('convert_case', {
  "text": "hello world example",
  "target": "camel"
});

More examples

{
  "text": "convert_this_text",
  "target": "kebab"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "textcase": {
      "url": "https://gateway.pipeworx.io/textcase/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026