Breadcrumb Generator

Breadcrumb Generator MCP Connector for Claude

A+

Automatically generates text, JSON-LD schema, and HTML breadcrumbs from URL paths.

3 tools Official Updated Jun 29, 2026 Official Vinkius Partner

The Breadcrumb Generator MCP server automates the creation of structural breadcrumbs in plain text, JSON-LD schema, and HTML formats. By providing a structured URL path, you can instantly obtain SEO-ready markup for search engines or accessible navigation elements for web interfaces. Use generate_text_breadcrumb for simple visual trails, generate_json_ld_schema to enhance your site's visibility in search results via Schema.org, and generate_html_breadcrumb to produce semantic HTML5 `` elements with relative links.

breadcrumburl-parsingjson-ldhtml-generationseo-tools

3 tools expose this connector's capabilities to your AI agent.

generate_html_breadcrumb

Generates an HTML breadcrumb snippet

generate_json_ld_schema

Generates a JSON-LD schema for BreadcrumbList

generate_text_breadcrumb

Generates a plain text breadcrumb

See how to talk to your AI agent using Breadcrumb Generator.

Generate a text breadcrumb for the path '/clothing/men/shirts'.

Home > Clothing > Men > Shirts

Create a JSON-LD schema for '/services/consulting/strategy'.

{"@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{"@type": "ListItem", "position": 1, "name": "Home", "item": "/"}, {"@type": "ListItem", "position": 2, "name": "Services", "item": "/services"}, {"@type": "ListItem", "position": 3, "name": "Consulting", "item": "/services/consulting"}, {"@type": "ListItem", "position": 4, "name": "Strategy", "item": "/services/consulting/strategy"}]}

Generate HTML breadcrumb markup for '/blog/news/updates'.

<nav aria-label="Breadcrumb"><ul class="breadcrumb"><li><a href="/">Home</a></li><li><a href="/blog">Blog</a></li><li><a href="/blog/news">News</a></li><li>Updates</li></ul></nav>

It produces three formats: plain text for simple visual trails, JSON-LD schema for SEO optimization, and semantic HTML5 markup for web navigation.

Related Connectors