Generate HTML <head> meta tags (title, description, keywords, robots, canonical, Open Graph, Twitter Card, viewport, charset, language) and return the HTML block plus the list of tags. Open Graph and Twitter values fall back to the basic title/description/canonical when left empty.
This page documents the HTTP endpoint POST /api/tools/meta-tag-generator/execute. See the MCP reference →
Call it over REST
POST https://api.findutils.com/api/tools/meta-tag-generator/execute · no API keys · 60 requests/min per IP
Execute — verified arguments
curl -X POST https://api.findutils.com/api/tools/meta-tag-generator/execute \
-H "Content-Type: application/json" \
-d '{
"title": "My Page",
"description": "A demo page.",
"canonical": "https://example.com/page"
}' Parameter schema for this endpoint
curl https://api.findutils.com/api/tools/meta-tag-generator Input schema
| Argument | Type | Required | Description |
|---|---|---|---|
| title | string | no | Page title (<title> and fallback for og:title). |
| description | string | no | Meta description (fallback for og:description). |
| keywords | string | no | Comma-separated keywords. |
| author | string | no | Author name. |
| robots | string (index, follow | index, nofollow | noindex, follow | noindex, nofollow) | no | Robots directive. Default "index, follow". Default: "index, follow". |
| canonical | string | no | Canonical URL (also fallback for og:url and twitter:url). |
| og_title | string | no | Open Graph title. Defaults to title. |
| og_description | string | no | Open Graph description. Defaults to description. |
| og_image | string | no | Open Graph image URL (also fallback for twitter:image). |
| og_type | string (website | article | product | profile | video.movie | music.song) | no | Open Graph type. Default "website". Default: "website". |
| og_url | string | no | Open Graph URL. Defaults to canonical. |
| twitter_card | string (summary | summary_large_image | app | player) | no | Twitter card type. Default "summary_large_image". Default: "summary_large_image". |
| twitter_title | string | no | Twitter title. Defaults to og_title. |
| twitter_description | string | no | Twitter description. Defaults to og_description. |
| twitter_image | string | no | Twitter image URL. Defaults to og_image. |
| twitter_site | string | no | Twitter @handle of the site. |
| viewport | string | no | Viewport content. Default "width=device-width, initial-scale=1.0". Default: "width=device-width, initial-scale=1.0". |
| charset | string | no | Character set. Default "UTF-8". Default: "UTF-8". |
| language | string | no | Content language code. Default "en". Default: "en". |
Example arguments (verified)
{
"title": "My Page",
"description": "A demo page.",
"canonical": "https://example.com/page"
} Also an MCP tool
Claude, Cursor, and any MCP client can call this tool as
findutils:meta_tag_generator after one connect command.
Connect once
claude mcp add findutils --transport http https://mcp.findutils.com/ More Seo tools
Bot Crawl Checker
Return which of 24 well-known crawlers (Googlebot, BingBot, GPTBot, ClaudeBot, PerplexityBot, AhrefsBot, Twitterbot and more) are allowed or
Domain Rating Checker
Return the Ahrefs Domain Rating (0-100) for up to 25 domains in one call, with a per-domain status.
Faq Schema Generator
Generate FAQPage JSON-LD structured data from question-answer pairs, and return the JSON-LD string, a ready <script> tag, the schema object,
Form To Json Schema
Returns a form schema object ({ formId, method, action, fields, submitText }) extracted from HTML form markup.
Geo Analyzer
Return a Generative Engine Optimization (GEO) report for a public web page: an overall 0-100 score, per-category scores (technical, content,
Graphql Schema Validator
Validate a GraphQL SDL schema and return errors, naming-convention warnings, and counts of types, queries, mutations, and subscriptions.
Heading Structure Analyzer
Analyze the H1-H6 heading hierarchy of an HTML document and return every heading, SEO warnings (missing or multiple H1, skipped levels, empt
Hreflang Tag Generator
Generate hreflang annotations for multilingual pages and return them as HTML <link> tags, an HTTP Link header, and an XML sitemap block, plu