Development
Renderiza Google SERP (truncado por píxeles en escritorio/móvil), tarjetas X y OpenGraph con diagnósticos SEO pre-lanzamiento
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/serp-social-preview-studio' \
-H 'Content-Type: application/json' \
-d '{"title":"Best Running Shoes 2026 — Tested & Reviewed | RunLab","description":"We tested 40 running shoes for comfort, durability, and speed. See our top picks for road, trail, and racing in 2026.","url":"https://runlab.example.com/best-running-shoes-2026","ogImage":"https://runlab.example.com/og/shoes-1200x630.jpg","ogDescription":"The 2026 running shoe guide, lab-tested for every type of runner.","siteName":"RunLab","twitterCard":"summary_large_image","device":"both"}'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/serp-social-preview-studio| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| title | text | Sí | — |
| description | textarea | No | — |
| url | text | Sí | — |
| ogImage | text | No | — |
| ogDescription | textarea | No | — |
| siteName | text | No | — |
| twitterCard | select | No | — |
| device | select | No | — |
Resultado HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}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-serp-social-preview-studio": {
"name": "serp-social-preview-studio",
"description": "Renderiza Google SERP (truncado por píxeles en escritorio/móvil), tarjetas X y OpenGraph con diagnósticos SEO pre-lanzamiento",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=serp-social-preview-studio",
"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": "serp-social-preview-studio",
"arguments": {
"title": "Best Running Shoes 2026 — Tested & Reviewed | RunLab",
"description": "We tested 40 running shoes for comfort, durability, and speed. See our top picks for road, trail, and racing in 2026.",
"url": "https://runlab.example.com/best-running-shoes-2026",
"ogImage": "https://runlab.example.com/og/shoes-1200x630.jpg",
"ogDescription": "The 2026 running shoe guide, lab-tested for every type of runner.",
"siteName": "RunLab",
"twitterCard": "summary_large_image",
"device": "both"
}
}
}¿Dudas o problemas? Contacta con [email protected]