Development
Preview regex replacements in real-time with detailed diff highlights and statistics
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/regex-replace-previewer' \
-H 'Content-Type: application/json' \
-d '{"textInput":"Enter the text you want to process...","pattern":"e.g., \\b(\\d{4})-(\\d{2})-(\\d{2})\\b","replacement":"e.g., $2/$3/$1","flags":"g","previewMode":"side-by-side"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/regex-replace-previewer| Name | Type | Required | Description |
|---|---|---|---|
| textInput | textarea | Yes | — |
| pattern | text | Yes | Enter the regular expression pattern to search for |
| replacement | text | Yes | Use $1, $2, ${name} for capture groups. Special: $& (match), $` (prefix), $' (suffix), $$ (literal $) |
| flags | text | No | Regex flags: g (global), i (case-insensitive), m (multiline), etc. |
| previewMode | select | 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-regex-replace-previewer": {
"name": "regex-replace-previewer",
"description": "Preview regex replacements in real-time with detailed diff highlights and statistics",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=regex-replace-previewer",
"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": "regex-replace-previewer",
"arguments": {
"textInput": "Enter the text you want to process...",
"pattern": "e.g., \\b(\\d{4})-(\\d{2})-(\\d{2})\\b",
"replacement": "e.g., $2/$3/$1",
"flags": "g",
"previewMode": "side-by-side"
}
}
}Questions or issues? Contact [email protected]
| Choose how to display the replacement preview |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}