# Seo Title Description Writer — REST API endpoint `seo-title-description-writer`

Analyze an SEO title and meta description and return character counts, estimated SERP pixel widths against Google desktop/mobile limits, keyword placement, power words, an emotional marketing value (EMV) score, and ready <title>/<meta> tags. Pixel widths are estimated from Arial glyph widths, not measured in a browser.

- Category: seo
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/seo-title-description-writer/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/seo-title-description-writer/
- Same tool on the other surface: https://findutils.com/mcp/seo-title-description-writer/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/seo-title-description-writer/execute \
  -H "Content-Type: application/json" \
  -d '{
    "title": "The Ultimate Guide to SEO",
    "description": "Learn SEO step by step with this complete guide.",
    "keyword": "seo"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/seo-title-description-writer
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `title` | string | no | The page title to analyze. |
| `description` | string | no | The meta description to analyze. |
| `url` | string | no | Optional page URL shown in the SERP preview. |
| `keyword` | string | no | Optional focus keyword. Reports whether it appears in the title, near the start, and in the description. |

Example arguments (verified):

```json
{
  "title": "The Ultimate Guide to SEO",
  "description": "Learn SEO step by step with this complete guide.",
  "keyword": "seo"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:seo_title_description_writer`. Full MCP reference: https://findutils.com/mcp/seo-title-description-writer/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
