Skip to main content
Glama

transform_column_case

Change text case in a column to uppercase, lowercase, title case, or capitalize sentences for data standardization and consistency.

Instructions

Transform the case of text in a column.

Returns: ColumnOperationResult with transformation details

Examples: # Convert to uppercase transform_column_case(ctx, "code", "upper")

# Convert names to title case transform_column_case(ctx, "name", "title") # Convert to lowercase for comparison transform_column_case(ctx, "email", "lower") # Capitalize sentences transform_column_case(ctx, "description", "capitalize")

Input Schema

NameRequiredDescriptionDefault
columnYesColumn name to transform text case in
transformYesCase transformation: upper, lower, title, or capitalize

Input Schema (JSON Schema)

{ "properties": { "column": { "description": "Column name to transform text case in", "type": "string" }, "transform": { "description": "Case transformation: upper, lower, title, or capitalize", "enum": [ "upper", "lower", "title", "capitalize" ], "type": "string" } }, "required": [ "column", "transform" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jonpspri/databeak'

If you have feedback or need assistance with the MCP directory API, please join our Discord server