Development
Parse and display named capture groups from regex patterns
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/named-group-tester' \
-H 'Content-Type: application/json' \
-d '{"textInput":"Enter text to test against (one test string per line in batch mode)...","pattern":"Enter pattern with named groups, e.g., (?<year>\\d{4})-(?<month>\\d{2})","flags":"g","batchMode":false,"includeUnmatched":true,"maxResults":100}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/named-group-tester| Name | Type | Required | Description |
|---|---|---|---|
| textInput | textarea | Yes | — |
| pattern | text | Yes | — |
| flags | text | No | — |
| batchMode | checkbox | No | Enable to process each line as a separate test |
| includeUnmatched | checkbox | No | Show groups with empty/null values in results |
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-named-group-tester": {
"name": "named-group-tester",
"description": "Parse and display named capture groups from regex patterns",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=named-group-tester",
"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": "named-group-tester",
"arguments": {
"textInput": "Enter text to test against (one test string per line in batch mode)...",
"pattern": "Enter pattern with named groups, e.g., (?<year>\\d{4})-(?<month>\\d{2})",
"flags": "g",
"batchMode": false,
"includeUnmatched": true,
"maxResults": 100
}
}
}Questions or issues? Contact [email protected]
| maxResults | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}