ai-readiness
Generates AI readiness files for any website, helping GitHub Copilot accurately represent the site in code suggestions and chat.
Generates AI readiness files for any website, enabling OpenAI Codex and other OpenAI tools to accurately represent the site.
Generates AI readiness files for any website, helping Perplexity accurately represent the site in search answers.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ai-readinessgenerate AI readiness kit for https://example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AI Readiness Skill
Generate a complete suite of AI readiness files (GEO / generative engine optimization) for any website in a single command โ
llms.txt,ai.txt, schema, RAG indexes, and more. Install it into Claude, Cursor, Windsurf, GitHub Copilot, Gemini, or Codex with onenpxcommand, or connect over MCP with no install.
๐ Live site & full docs: ai.silverbackmarketing.com ยท โญ Star this repo if it helps you get found by AI.
What is the AI Readiness Kit?
The AI Readiness Kit is a free, open-source set of 17 structured files you deploy at the root of your website โ robots.txt, ai.txt, llms.txt, schema, RAG indexes, and more โ that tell ChatGPT, Claude, Gemini, and Perplexity exactly who you are, what you offer, and how to represent you. Generate the whole set, tailored to any site, with a single command. Free forever (MIT); install with npx or run it over MCP with no install.
Related MCP server: TrueSource GEO MCP Server
Why AI readiness
When someone wants a product recommendation, a service provider, or a straight answer, they often ask ChatGPT, Claude, Gemini, or Perplexity before they ever visit a website. If you are not giving those systems clear, current signals, they guess โ and they often guess wrong.
AI readiness files are structured files you deploy at the root of your website to tell AI systems exactly who you are, what you offer, and where to send people. They speak a format AI already understands (the llmstxt.org standard, Schema.org, and emerging AI-crawler conventions), so assistants stop guessing about your brand based on stale training data and start representing you accurately in their answers.
This skill researches any site, classifies its industry, and generates all of those files for you โ tailored to that business โ in one command.
Contents
Install
Quick install (any agent) โ npx
# Global skill install โ ~/.agents/skills/ AND ~/.claude/skills/ (default)
npx @silverbackmarketing/ai-readiness install
# AGENTS.md โ the cross-agent standard (Cursor, Codex & others)
npx @silverbackmarketing/ai-readiness install --agent agents
# Both at once (recommended)
npx @silverbackmarketing/ai-readiness install --allPrimary targets:
Target | Installs to |
|
|
|
|
|
|
For prompt-based agents, AGENTS.md is the default and recommended target โ most modern agents now read it. Tool-specific files remain available if you prefer them:
Opt-in target | Installs to |
|
|
|
|
|
|
|
|
|
|
Non-Claude targets install into the current directory, so run the command from your project root. --all installs Claude + AGENTS.md. Add --force to overwrite, or --dir <path> to change the target. Shared-file installs insert a marked block and update it in place on re-run, so they never clobber your other instructions.
Other install options
Claude Cowork one-click: download and open
ai-readiness.skill.Any AI, manually: copy
SKILL.mdinto the assistant's system prompt or custom instructions.
After installing, trigger it with /ai-readiness yoursite.com in Claude, or just ask any agent: "create AI readiness files for yoursite.com."
Use via MCP (no install)
Connect your coding agent to the hosted MCP server instead of installing the skill locally. Same workflow โ research a site and generate all the files.
Production: https://ai.silverbackmarketing.com/api/mcp
Example prompts once connected:
Generate AI readiness files for example.com
Use ai-readiness to list all output files
Get the file spec for llms.txt from ai-readinessCursor โ add to .cursor/mcp.json:
{
"mcpServers": {
"ai-readiness": {
"url": "https://ai.silverbackmarketing.com/api/mcp"
}
}
}Refresh MCP servers, then ask: "Use ai-readiness to generate files for example.com"
Claude Code โ add .mcp.json to your project root:
{
"mcpServers": {
"ai-readiness": {
"type": "http",
"url": "https://ai.silverbackmarketing.com/api/mcp"
}
}
}Or run:
claude mcp add --transport http ai-readiness https://ai.silverbackmarketing.com/api/mcpRestart the session, run /mcp, then ask: "Generate AI readiness files for mysite.com using ai-readiness"
VS Code / Copilot โ add to .vscode/mcp.json:
{
"servers": {
"ai-readiness": {
"type": "http",
"url": "https://ai.silverbackmarketing.com/api/mcp"
}
}
}Open MCP: List Servers, confirm ai-readiness is running, then use agent mode in Copilot Chat.
Claude Desktop โ use mcp-remote in ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"ai-readiness": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ai.silverbackmarketing.com/api/mcp"]
}
}
}Fully quit and reopen Claude Desktop after saving.
OpenAI Codex โ add to ~/.codex/config.toml:
[mcp_servers.ai-readiness]
url = "https://ai.silverbackmarketing.com/api/mcp"
enabled = trueOr run codex mcp add ai-readiness --url https://ai.silverbackmarketing.com/api/mcp, then /mcp in a session.
Antigravity โ Agent panel โ โฆ โ MCP Servers โ Manage โ View raw config:
{
"mcpServers": {
"ai-readiness": {
"serverUrl": "https://ai.silverbackmarketing.com/api/mcp"
}
}
}Antigravity uses serverUrl (not url). Save, refresh, then try in agent mode.
Perplexity โ two ways to use the kit:
Via remote MCP connector โ requires a paid Perplexity plan; an org admin may first need to enable "Allow members to add custom connectors." Go to Account settings โ Connectors โ click + Custom connector (top-right) โ select Remote, then fill in:
Field
Value
Name
AI ReadinessMCP Server URL
https://ai.silverbackmarketing.com/api/mcpAuthentication
NoneTransport
Streamable HTTPCheck the acknowledgement box, click Add, then click the connector card to enable it. Ask: "Use ai-readiness to generate files for example.com." (Full steps: Perplexity's Adding Custom Remote Connectors guide.)
Manual โ free, works on any plan: paste
SKILL.mdinto a thread (or attach it), then ask: "Using these AI readiness instructions, generate AI readiness files for example.com."
Quick test:
curl -X POST 'https://ai.silverbackmarketing.com/api/mcp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","method":"tools/list","params":{},"id":1}'More client configs: ai.silverbackmarketing.com/#mcp
What It Does
Run /ai-readiness yoursite.com and the AI will research the site, classify its industry, and generate production-ready files that tell AI systems (ChatGPT, Claude, Gemini, Perplexity, and others) exactly what the site is, what it offers, and where to send users.
When deployed to a web root, these files improve how a site appears in AI-generated answers, summaries, and recommendations โ a must-have for any business that wants to show up in the AI-driven web.
The Files
The skill generates 18 files. Of these, 17 deploy to your web root across 7 categories (16 if you omit the optional .well-known/ai-plugin.json); the 18th, README.md, is project documentation for your team. This matches the 17-file kit described on the live site.
# | File | Purpose | Deployed |
1 |
| Primary AI identity declaration | โ |
2 |
| Concise LLM-readable site summary | โ |
3 |
| Comprehensive LLM knowledge base | โ |
4 |
| AI-optimized sitemap | โ |
5 |
| Human-readable sitemap for AI context | โ |
6 |
| Structured entity definitions | โ |
7 |
| User intent and query mappings | โ |
8 |
| Schema.org structured data | โ |
9 |
| RAG retrieval knowledge base | โ |
10 |
| JSONL format for embedding pipelines | โ |
11 |
| AI content transparency statement | โ |
12 |
| Data usage and training policy | โ |
13 |
| Plugin manifest for AI agents (optional) | โ |
14 |
| Implementation guide for developers | โ |
15 |
| Web app manifest | โ |
16 |
| Step-by-step deployment guide | โ |
17 |
| AI crawler directives | โ |
18 |
| Project documentation (not deployed) | โ |
Usage
In Claude Cowork, type:
/ai-readiness yoursite.comOr use natural language:
create AI readiness files for acmecorp.com
make my site AI-ready: hubspot.com
generate llms.txt for shopify.comClaude will:
Run 10+ targeted searches to research the site
Classify the site type (SaaS, e-commerce, education, healthcare, etc.)
Generate all files tailored to that industry
Save everything to a folder named after the domain in your workspace
FAQ
Getting Started
What are AI Readiness Files? They are structured files you deploy at the root of your website to tell AI systems exactly who you are, what you offer, and where to send people. They speak a format AI already understands, so assistants stop guessing about your brand based on old training data.
Why does AI readiness matter now? When someone wants a product recommendation, a service provider, or a straight answer, they often ask ChatGPT, Claude, Gemini, or Perplexity before they visit a website. If you are not giving those systems clear, current signals, they guess. And they often guess wrong.
How many files are in the kit?
The kit includes 17 purpose-built files across 7 categories: Identity & Permissions, Content Files, Map & Navigation, Intelligence Files, Research Files, Policy Files, and Operations Files. Each one helps AI understand and represent your site more accurately. (The skill generates 18 files total โ the extra one is this README.md for your project.)
Where should I start?
Start with the critical files: robots.txt, ai.txt, llms.txt, and llms-full.txt. They deliver the biggest immediate impact and are what most AI systems look for first. Then add sitemaps, intelligence JSON files, policies, and operational files using the deployment checklist.
Identity & Permissions
What does robots.txt do for AI?
robots.txt sits at the front door of your website and tells automated visitors (search engines, AI bots, and scrapers) which sections they can access. For AI readiness, it includes instructions for major crawlers like GPTBot and ClaudeBot, pointing them toward your llms.txt and ai-sitemap.xml while keeping checkout, login, and admin pages off limits.
What is ai.txt? ai.txt is your brand's introduction to every AI system on the internet. Where robots.txt controls access, ai.txt goes further. It covers what you sell, what you are known for, your authoritative topics, and the rules for what AI systems can and cannot do with your content.
How is ai.txt different from robots.txt? robots.txt controls access: which pages bots can crawl. ai.txt controls identity: who you are, what you offer, and your ground rules for AI use of your content. Think of robots.txt as the doorman and ai.txt as the briefing document you hand a journalist before an interview.
Content & Navigation
What is llms.txt? llms.txt is a structured text file built for large language models. It gives AI a quick map of your website: company name, description, organized sections with direct links, and the most common questions your site answers. It follows the llmstxt.org standard used by ChatGPT, Claude, Gemini, and Perplexity.
What's the difference between llms.txt and llms-full.txt? llms.txt is the cheat sheet: a quick summary an AI can scan in seconds. llms-full.txt is the deep dive with rich descriptions, detailed Q&A, and full category explanations. If llms.txt is a Wikipedia summary, llms-full.txt is the full article.
Why do I need an ai-sitemap.xml? A regular sitemap lists pages and timestamps. The ai-sitemap adds what each page is about, its content type, and a plain-English summary. It is the difference between a paper road map and GPS with points of interest. AI crawlers can understand pages without fetching and parsing each one individually.
Intelligence & Research
What is ai-intent.json? ai-intent.json maps real user questions (the things people type into AI assistants) to the best page on your website to answer each one. Without it, AI guesses which page to recommend. With it, you give AI a direct URL for every common query.
What are ai-entities.json and ai-schema.json for? ai-entities.json is a structured catalog of the important parts of your site: products, categories, services, and key concepts. It powers AI knowledge graphs. ai-schema.json uses the Schema.org standard to describe your organization in machine-readable format so search engines and AI systems can identify you without ambiguity.
What are the RAG index files? rag-index.json and rag-index.jsonl are ready-made indexes of your site built for AI research and retrieval pipelines. When a user asks a question, AI first pulls the most relevant documents from this index before generating an answer, which keeps responses grounded in your actual content.
Policies & Maintenance
What is a training data policy? training-data-policy.txt sets formal rules for how AI companies can use your content, including model training, RAG indexing, and commercial use. It answers a practical question every brand should decide upfront: what are others allowed to do with your work?
What is ai-disclosure.txt? ai-disclosure.txt is a public transparency report explaining how your organization uses AI, whether for content generation, recommendations, or customer interactions. It builds trust by answering those questions before someone has to ask.
How often should I update my AI readiness files?
It depends on the file. Update llms.txt and sitemaps monthly or when your site structure changes. Refresh ai.txt and llms-full.txt quarterly or when products change. Review policy files annually. The manifest.json file lists recommended update frequencies for every file in the kit.
Reference Documentation
The references/file-specs.md file contains the detailed specification for each file โ required structure, key fields, and condensed examples. It is loaded automatically when the skill runs.
The scripts/gen_jsonl.py utility converts rag-index.json to rag-index.jsonl format for use with embedding pipelines:
python3 scripts/gen_jsonl.py rag-index.json rag-index.jsonlPDF Guides
The docs/ folder contains PDF reference guides explaining each file in plain English and technical detail:
Guide | Audience | Files Covered |
General / Non-technical | All 17 files incl. ai-plugin.json | |
General / Non-technical | 16 files excl. ai-plugin.json | |
Web Developers | All 17 files, compact technical format | |
Web Developers | 16 files, compact technical format |
Skill File Structure
ai-readiness/
โโโ ai-readiness.skill โ Claude Cowork installable skill (download & open)
โโโ SKILL.md โ Raw skill definition โ works in any AI assistant
โโโ README.md โ This file
โโโ references/
โ โโโ file-specs.md โ Detailed specs for all output files
โโโ scripts/
โ โโโ gen_jsonl.py โ JSONL generator utility
โโโ docs/
โโโ ai-readiness-guide-with-plugin.pdf
โโโ ai-readiness-guide-no-plugin.pdf
โโโ ai-readiness-guide-dev-with-plugin.pdf
โโโ ai-readiness-guide-dev-no-plugin.pdfAuthor & Company
Russ Wittmann โ SVP of Technology, Silverback Marketing LinkedIn ยท X / Twitter
Silverback Marketing is an ROI-focused digital marketing agency (founded 2007, Queen Creek, Arizona) helping businesses grow through strategy, content, and technology. This skill was built as part of Silverback's AI-readiness service offering โ helping clients get found in the age of AI search.
๐ ai.silverbackmarketing.com ยท silverbackmarketing.com
License
MIT โ free to use, modify, and distribute with attribution. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityCmaintenanceEnables scanning websites for AI search readiness, generating fixes like llms.txt, and comparing GEO scores across domains.Last updated81
- AlicenseAqualityDmaintenanceEnables AI assistants to audit websites for AI-readiness, generate AI-optimized robots.txt and llms.txt files, and create VibeTags for emotional AI brand resonance.Last updated410MIT
- AlicenseAqualityAmaintenanceEnables AI agents to check whether a public website is crawlable, understandable, and ready for AI search workflows through local-only audits of robots.txt, sitemaps, metadata, and llms.txt.Last updated3721MIT
- AlicenseAqualityBmaintenanceCheck whether a website is visible to AI search engines (ChatGPT, Perplexity, Claude, Google AI Overviews). Returns a 0-100 readiness score, a grade, and a specific fix for each gap. Dependency-free, no API keys.Last updated24MIT
Related MCP Connectors
Scan any URL for AI agent readability โ Vercel Spec, llmstxt.org, and agent-protocol manifests.
Live SEO workflow tools for Claude Code, Codex, and AI agents.
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/silverbackmarketing/ai-readiness'
If you have feedback or need assistance with the MCP directory API, please join our Discord server