import { createFileRoute } from "@tanstack/react-router"; import type { ReactNode } from "react"; import { featureGroups } from "@/lib/feature-pages"; import { buildPageSeo } from "@/lib/seo"; const featuresDescription = "Explore OpenSEO's open-source SEO tools for AI-agent workflows, Google Search Console MCP, keyword research, rank tracking, backlinks, site audits, competitor analysis, and AI visibility."; export const Route = createFileRoute("/_marketing/features/")({ head: () => buildPageSeo({ title: "Features", description: featuresDescription, path: "/features", titleSuffix: "OpenSEO", }), component: FeaturesIndex, }); function FeaturesIndex() { return (

Open-source SEO tools

All the tools you need, in one workspace

Research keywords, track rankings, audit sites, and understand your AI visibility from one modern platform.

AI agent workflows

Let supported MCP clients research keywords, SERPs, domains, backlinks, and first-party Search Console data through OpenSEO.

OpenSEO MCP

OpenSEO MCP

Connect Claude, Codex, and other agents to OpenSEO research tools.

Explore MCP

Search Console MCP

Google Search Console MCP

Give agents access to clicks, impressions, CTR, position, and URL inspection.

Explore GSC MCP

{featureGroups.map((group) => (

{group.label}

{group.description}

{group.pages.map((page) => (

{page.eyebrow}

{page.title}

{page.navDescription}

Explore feature

))}
))}
); } function FeatureCard({ href, children, }: { href: string; children: ReactNode; }) { return ( {children} ); }