Validation
Simula el orden de lectura y la semantica hablada de un lector a partir de una URL o HTML
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/screen-reader-simulation-tester' \
-H 'Content-Type: application/json' \
-d '{"htmlInput":"<html><head><title>Launch Promo</title></head><body><header><a href=\"/\"><img src=\"/logo.png\"></a></header><main><h1>Launch Promo</h1><h3>Early access</h3><form><input id=\"email\" type=\"email\" /><button></button></form></main></body></html>","pageUrl":"","preset":"VoiceOver","includeLandmarkSummary":true,"showFixSuggestions":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/screen-reader-simulation-tester| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| htmlInput | textarea | No | — |
| pageUrl | text | No | — |
| preset | select | No | — |
| includeLandmarkSummary | checkbox | No | — |
| showFixSuggestions | checkbox | No | — |
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-screen-reader-simulation-tester": {
"name": "screen-reader-simulation-tester",
"description": "Simula el orden de lectura y la semantica hablada de un lector a partir de una URL o HTML",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=screen-reader-simulation-tester",
"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": "screen-reader-simulation-tester",
"arguments": {
"htmlInput": "<html><head><title>Launch Promo</title></head><body><header><a href=\"/\"><img src=\"/logo.png\"></a></header><main><h1>Launch Promo</h1><h3>Early access</h3><form><input id=\"email\" type=\"email\" /><button></button></form></main></body></html>",
"pageUrl": "",
"preset": "VoiceOver",
"includeLandmarkSummary": true,
"showFixSuggestions": true
}
}
}Resultado HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}¿Dudas o problemas? Contacta con [email protected]