Development
Analiza encabezados HTTP, configuraciones de seguridad e información de respuesta
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/http-headers-analyzer' \
-H 'Content-Type: application/json' \
-d '{"url":"https://example.com","method":"GET","userAgent":"Custom User Agent (optional)","includeHeaders":true,"includeSecurity":true,"includePerformance":true,"includeResponse":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/http-headers-analyzer| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| url | text | Sí | — |
| method | select | No | — |
| userAgent | text | No | — |
| includeHeaders | checkbox | No | — |
| includeSecurity | checkbox | No | — |
| includePerformance |
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-http-headers-analyzer": {
"name": "http-headers-analyzer",
"description": "Analiza encabezados HTTP, configuraciones de seguridad e información de respuesta",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=http-headers-analyzer",
"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": "http-headers-analyzer",
"arguments": {
"url": "https://example.com",
"method": "GET",
"userAgent": "Custom User Agent (optional)",
"includeHeaders": true,
"includeSecurity": true,
"includePerformance": true,
"includeResponse": true
}
}
}¿Dudas o problemas? Contacta con [email protected]
| checkbox |
| No |
| — |
| includeResponse | checkbox | No | — |
Resultado de texto
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}