Development
Compare el rendimiento de diferentes patrones de regex, identifique cuellos de botella y detecte casos degenerados
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/regex-benchmark' \
-H 'Content-Type: application/json' \
-d '{"regexList":".*\n[a-z]+\n\\d+","testInput":"hello world\n12345\nabc","regexFlags":"Flags to apply to all patterns (e.g., gi, m, i)","iterations":1000,"warmupRuns":100,"targetDialect":"javascript","includeDegenerate":true}'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/regex-benchmark| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| regexList | textarea | Sí | — |
| testInput | textarea | Sí | — |
| regexFlags | text | No | — |
| iterations | number | No | — |
| warmupRuns | number | No | — |
| targetDialect |
Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-regex-benchmark": {
"name": "regex-benchmark",
"description": "Compare el rendimiento de diferentes patrones de regex, identifique cuellos de botella y detecte casos degenerados",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=regex-benchmark",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus parámetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "regex-benchmark",
"arguments": {
"regexList": ".*\n[a-z]+\n\\d+",
"testInput": "hello world\n12345\nabc",
"regexFlags": "Flags to apply to all patterns (e.g., gi, m, i)",
"iterations": 1000,
"warmupRuns": 100,
"targetDialect": "javascript",
"includeDegenerate": true
}
}
}| select |
| Sí |
| — |
| includeDegenerate | checkbox | No | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}¿Dudas o problemas? Contacta con [email protected]