Skip to main content
Glama
OrtaMarco

seo-geo-mcp-server

by OrtaMarco

Structured Data (Schema.org) Check

structured_data_check
Read-onlyIdempotent

Extract and validate JSON-LD, microdata, and RDFa. Reports types, flags parse errors, and checks against Google's rich-result requirements for missing required and recommended properties.

Instructions

Extract and validate JSON-LD, microdata and RDFa. Reports every @type found, flags JSON-LD blocks that fail to parse (those are invisible to search engines), and checks recognised types against Google's rich-result requirements — required properties that are missing, plus recommended ones worth adding.

Covers Article/BlogPosting/NewsArticle, Product, FAQPage, HowTo, Recipe, Event, Organization, LocalBusiness, Person, WebSite, BreadcrumbList, VideoObject, JobPosting, Course, Review and AggregateRating.

Args:

  • url (string): the page to check.

  • response_format ('markdown' | 'json'): output format (default 'markdown').

Returns: { json_ld_blocks, microdata_items, parse_errors[], items[{type, properties[], missing_required[], missing_recommended[], valid}], types_found[], has_organization, has_breadcrumb, score, grade, findings[] }.

Example: "Does https://example.com/product have valid Product schema?" -> structured_data_check(url="https://example.com/product").

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesPage URL to analyse, e.g. 'https://example.com/blog/post'. The scheme defaults to https://.
response_formatNoOutput format: 'markdown' for a human-readable summary (default) or 'json' for the full structured payload.markdown

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
gradeYes
itemsYes
scoreYes
has_faqYes
findingsYes
final_urlYes
has_personYes
rdfa_itemsYes
has_articleYes
has_websiteYes
types_foundYes
parse_errorsYes
has_breadcrumbYes
json_ld_blocksYes
microdata_itemsYes
has_organizationYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv1.2.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • removedInput schema / additionalProperties
      Removed value: -false
    • changedOutput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv1.0.0

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already establish the safety profile (readOnlyHint, idempotentHint, destructiveHint=false), so the bar is lowered. The description adds meaningful behavioral context beyond that: it discloses that unparseable JSON-LD blocks are 'invisible to search engines' and that the tool reports missing required and recommended rich-result properties against Google's requirements. This describes the checking behavior and its significance without contradicting the read-only, non-destructive annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with its core purpose in the first sentence, then layers covered types, args, returns, and an example in a logical order. It is longer than typical but the length is justified by the tool's breadth (many schema types and a complex return payload). The Args section is somewhat redundant with the schema, but the Returns section and example earn their place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, the description needn't detail return values, yet it still lists the return fields, which is helpful. It covers what is extracted, what is validated, which types are recognized, parameter defaults, and a concrete example. For a read-only analysis tool whose safety profile is carried by annotations, nothing essential for an agent to call it correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so both url and response_format are already fully documented with type, default, and format details. The description's Args section largely restates the schema rather than adding new meaning, though it does provide an illustrative example invocation. Per the rubric, with high schema coverage the baseline is 3, and the description adds only marginal value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource pair — 'Extract and validate JSON-LD, microdata and RDFa' — which names both the action and the exact subject matter. The tool title and covered-types list (Article, Product, FAQPage, etc.) reinforce the scope, and the focus on Schema.org structured data clearly differentiates it from siblings like robots_txt_check, meta_tags_check, and sitemap_check, which target entirely different SEO concerns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The example ('Does https://example.com/product have valid Product schema?') implies a concrete use case, and the covered-types enumeration hints at when the tool applies. However, there is no explicit statement of when to use this versus an alternative, nor any exclusionary guidance (e.g., 'for general SEO issues use seo_audit'). The usage context is implied but never stated, which is a genuine gap given the 16 sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.