For years, website optimization has focused on search engines.
We optimized for Google, improved Core Web Vitals, added structured data, and built XML sitemaps. The goal was simple: help search engines understand and rank our content.
But a new type of visitor is becoming increasingly important: AI agents.
Whether it’s ChatGPT, Gemini, Claude, Perplexity, or enterprise AI systems, more content is being discovered and consumed by machines that don’t browse the web like humans do.
The next optimization battle isn’t just SEO.
It’s making websites understandable for AI agents.
Why AI Struggles With Modern Websites
Today’s websites contain much more than content:
- Navigation menus
- Cookie banners
- Ads
- Analytics scripts
- UI components
- CSS and JavaScript bundles
Humans instantly ignore this noise.
AI systems must process it before they can find the actual information.
This increases token usage, slows down retrieval, and can make it harder for AI systems to understand what’s truly important on a page.
Why Markdown Is Suddenly Relevant Again
Markdown has existed for decades, but AI may be giving it a second life.
Unlike HTML, Markdown focuses almost entirely on content structure:
# GEO vs SEO
## What is GEO?
Generative Engine Optimization (GEO) focuses on helping AI systems understand and use content.
### Benefits
- Better readability
- Lower token usage
- Easier content extraction
Code language: PHP (php)
For an AI model, this structure is much easier to process than a full webpage containing hundreds of lines of HTML, CSS, and JavaScript.
That’s why we’re starting to see growing interest in:
- Markdown-based documentation
- AI-friendly content endpoints
- llms.txt
- Knowledge graphs
- Structured data
- Model Context Protocol (MCP)
You Can Test This Yourself
Many AI-focused tools and platforms are experimenting with serving Markdown versions of web pages.
Try requesting a page as Markdown:
curl https://yourwebsite.com/article \
-H "Accept: text/markdown"
Code language: JavaScript (javascript)
If the website supports it, you’ll receive a clean Markdown version instead of HTML.
You can compare that with:
curl https://yourwebsite.com/article
Code language: JavaScript (javascript)
The difference can be dramatic. Instead of navigation, scripts, and styling information, the AI receives mostly the content itself.
How to test if your site is agent-ready
If you want to go beyond theory and actually validate how “machine-readable” your website is, you can use tools like IsItAgentReady.
This tool evaluates how well your site can be understood and used by AI agents — not just crawled by search engines. It focuses on whether your site exposes structured signals that modern agents rely on, such as:
- discoverability via
robots.txt, sitemaps, and link headers - content accessibility (including Markdown negotiation and clean parsing)
- bot access control and explicit AI crawler rules
- protocol-level discovery (e.g. MCP, API catalogs, agent cards)
- machine-executable capabilities like authentication or commerce flows
Instead of treating AI systems as “dumb crawlers,” the scan reflects a shift toward a new layer of the web where agents need structured intent, not just HTML rendering.
GEO Is More Than llms.txt
Many discussions about GEO focus on llms.txt files.
While they’re useful, they are only one piece of the puzzle.
AI systems increasingly rely on:
- Clear semantic HTML
- Structured data
- Entity relationships
- Machine-readable content
- Documentation
- APIs and MCP servers
In many cases, an API or structured endpoint may be more valuable to an AI system than a traditional webpage.
What Developers Should Do Today
You don’t need to rebuild your website for AI.
Start with the fundamentals:
- Use proper heading structure (
h1,h2,h3) - Publish Schema.org structured data
- Ensure important content is server-rendered
- Create an
llms.txtfile - Consider exposing documentation as Markdown
- Think in terms of entities, not just keywords
These improvements benefit both search engines and AI systems.
The Future of Optimization
SEO isn’t disappearing anytime soon.
But the web is evolving beyond search engines.
As AI assistants become a primary way people discover information, websites will need to be optimized for two audiences:
- Humans
- AI agents
The organizations that make their content easy to understand, retrieve, and reuse will have a significant advantage in the next era of web discovery.
The future of optimization may not be about ranking first.
It may be about becoming the source AI chooses to cite.








