Text Processing
Remove all non-alphanumeric special characters from text with flexible preservation options
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/non-alphanumeric-cleaner' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter text to clean special characters from...","preservePunctuation":false,"preserveSpaces":false,"preserveChinese":false,"customPreserve":"Enter additional characters to keep..."}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/non-alphanumeric-cleaner| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | — |
| preservePunctuation | checkbox | No | Keep .,!?;:()[]{}"' |
| preserveSpaces | checkbox | No | Keep spaces, tabs, and line breaks |
| preserveChinese | checkbox | No | Keep CJK Unified Ideographs (U+4E00 to U+9FFF) |
| customPreserve | text | No |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-non-alphanumeric-cleaner": {
"name": "non-alphanumeric-cleaner",
"description": "Remove all non-alphanumeric special characters from text with flexible preservation options",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=non-alphanumeric-cleaner",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "non-alphanumeric-cleaner",
"arguments": {
"text": "Enter text to clean special characters from...",
"preservePunctuation": false,
"preserveSpaces": false,
"preserveChinese": false,
"customPreserve": "Enter additional characters to keep..."
}
}
}Questions or issues? Contact [email protected]
| Add any other characters you want to preserve |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}