Development
Pixel-accurate Google SERP preview for desktop and mobile, light and dark: current truncation budgets, 2025+ URL line formats, review stars and product rich results, byline dates, meters and diagnostics.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/serp-preview-simulator' \
-H 'Content-Type: application/json' \
-d '{"title":"Sourdough Starter Guide: First Rise to Fridge Care","description":"A practical sourdough starter schedule with feeding ratios, temperature notes, and fridge storage rules so your first loaf rises on time.","url":"breadcircle.io/guides/sourdough-starter","siteName":"Bread Circle","date":"2026-08-01","richResult":"none","rating":4.6,"reviewCount":0,"price":"","device":"both","theme":"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-preview-simulator| Name | Type | Required | Description |
|---|---|---|---|
| title | text | Yes | — |
| description | textarea | No | — |
| url | text | Yes | — |
| siteName | text | No | — |
| date | text | No | — |
| richResult |
| select |
| No |
| — |
| rating | number | No | — |
| reviewCount | number | No | — |
| price | text | No | — |
| device | select | No | — |
| theme | 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-preview-simulator": {
"name": "serp-preview-simulator",
"description": "Pixel-accurate Google SERP preview for desktop and mobile, light and dark: current truncation budgets, 2025+ URL line formats, review stars and product rich results, byline dates, meters and diagnostics.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=serp-preview-simulator",
"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-preview-simulator",
"arguments": {
"title": "Sourdough Starter Guide: First Rise to Fridge Care",
"description": "A practical sourdough starter schedule with feeding ratios, temperature notes, and fridge storage rules so your first loaf rises on time.",
"url": "breadcircle.io/guides/sourdough-starter",
"siteName": "Bread Circle",
"date": "2026-08-01",
"richResult": "none",
"rating": 4.6,
"reviewCount": 0,
"price": "",
"device": "both",
"theme": "both"
}
}
}Questions or issues? Contact [email protected]