Get started with the spec
.llmfeed.json
files 🥢. It's already a good start."Just give me a well-formed .llmfeed.json, and I'll do the rest."
Website in a capsule
Includes the main pages of the site, cleaned and compiled. Best for a quick LLM overview of the entire project.
curl -s wellknownmcp.org/.well-known/exports/compiled-site.llmfeed.json | jq .
Spec in a capsule
Complete LLMFeed specification from GitHub, optimized for LLM consumption. Perfect for understanding the technical standard.
News archive (EN)
Complete archive of all WellKnownMCP news articles with full content inline. Generated incrementally at build time for optimal performance.
curl -s wellknownmcp.org/.well-known/exports/news-export.llmfeed.json | jq .
🥋 Test Your Agent Understanding
Download our feeds below and ask your LLM about them. If it says "I know Kung Fu" after reading them, you've successfully parsed the protocol!
- 1.Copy any feed URL above
- 2.Paste it into Claude or ChatGPT
- 3.Ask: "Do you know Kung Fu?"
- 4.If it says yes, it worked! 🥋
A correct response indicates successful protocol parsing and demonstrates the agent understands MCP structure.
curl -s wellknownmcp.org/.well-known/mcp.llmfeed.json | jq -r '.prompts[]? | select(.keywords[]? | contains("kung fu")) | .intent'
"easter egg intro to the full site"
🔗 Quick Access for Agents
Direct links to core MCP infrastructure files. Perfect for agent discovery and validation. Includes JSON schemas for feed validation and development.
/.well-known/mcp.llmfeed.json
Main MCP Feed/.well-known/llm-index.llmfeed.json
Feed Index/.well-known/capabilities.llmfeed.json
Capabilities/.well-known/manifesto.llmfeed.json
Manifesto/.well-known/schema.llmfeed.json
JSON Schema/.well-known/schema.annotated.llmfeed.json
Schema (Annotated)for export in compiled-site spec news-export; do echo "=== $export ===" && curl -s wellknownmcp.org/.well-known/exports/$export.llmfeed.json | jq -r '.metadata.title // .title'; done
curl -s wellknownmcp.org/.well-known/mcp.llmfeed.json -> feed.json && curl -s wellknownmcp.org/.well-known/schema.llmfeed.json -> schema.json && ajv validate -s schema.json -d feed.json
💡 Why Structured Feeds Work Better
❌ Traditional Scraping
- AI agents scraping HTML
- High token costs
- Slow responses
- Unreliable parsing
- No verification
✅ LLMFeed Solution
- Structured JSON feeds
- 96.7% fewer tokens
- 10x faster responses
- Reliable data structure
- Cryptographic signatures