Comprehensive text transformation tools
## Text Toolkit MCP Server: String Manipulation Utilities The **Text Toolkit MCP Server** provides a comprehensive set of text manipulation utilities directly within Google Antigravity, enabling AI assistants to transform, analyze, and process text programmatically. This integration brings powerful string operations to your development workflow. ### Why Text Toolkit MCP? - **String Operations**: Case conversion, trimming, splitting, joining, and more - **Text Analysis**: Word counts, character frequency, readability scores - **Encoding/Decoding**: Base64, URL encoding, HTML entities, and more - **Hash Functions**: Generate MD5, SHA, and other cryptographic hashes - **Pattern Replacement**: Advanced find and replace with regex support ### Key Features #### 1. Text Transformation ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Convert this text to title case and remove extra whitespace" }], tools=[{ "name": "textkit_transform", "description": "Transform text" }] ) ``` #### 2. Encoding Operations ```python # Encode and decode response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Base64 encode this content and URL encode the result" }], tools=[{"name": "textkit_encode", "description": "Encoding operations"}] ) ``` #### 3. Text Analysis ```python # Analyze text response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Analyze this text for word count, reading level, and character frequency" }], tools=[{"name": "textkit_analyze", "description": "Analyze text"}] ) ``` #### 4. Hash Generation ```python # Generate hashes response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Generate SHA-256 hash of this content" }], tools=[{"name": "textkit_hash", "description": "Generate hashes"}] ) ``` ### Configuration ```json { "mcpServers": { "text-toolkit": { "command": "npx", "args": ["-y", "@anthropic/mcp-text-toolkit"], "env": {} } } } ``` ### Use Cases **Data Processing**: Transform and clean text data for processing pipelines. **Content Formatting**: Apply consistent formatting to text content. **Security Operations**: Generate hashes and encode sensitive data. **Text Analysis**: Analyze content for readability and statistics. The Text Toolkit MCP Server brings comprehensive text manipulation directly into your development workflow, enabling powerful string operations.
{
"mcpServers": {
"text-toolkit": {
"mcpServers": {
"text-toolkit": {
"args": [
"-y",
"text-toolkit-mcp"
],
"command": "npx"
}
}
}
}
}