Development
Preview Google SERP (pixel-accurate desktop & mobile truncation), X (Twitter) Card, and OpenGraph card side by side, with pre-launch SEO diagnostics
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/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"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/serp-social-preview-studio| Name | Type | Required | Description |
|---|---|---|---|
| title | text | Yes | — |
| description | textarea | No | — |
| url | text | Yes | — |
| ogImage | text | No | — |
| ogDescription | textarea | No | — |
| siteName | text | No | — |
| twitterCard | select | No | — |
| device | select | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}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-serp-social-preview-studio": {
"name": "serp-social-preview-studio",
"description": "Preview Google SERP (pixel-accurate desktop & mobile truncation), X (Twitter) Card, and OpenGraph card side by side, with pre-launch SEO diagnostics",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=serp-social-preview-studio",
"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": "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"
}
}
}Questions or issues? Contact [email protected]