llms.txt Content
# LLM documentation for Netlify
> Comprehensive documentation for the Netlify web platform for building and deploying production-ready sites and web apps that are highly performant, secure, and ready to scale. Covers serverless functions, edge functions, async workloads, data and blob storage, image CDN, build configuration, deploys, domains, forms, team management, and AI tooling (skills, agent runners). Agent skills repository: https://github.com/netlify/context-and-tools.
Netlify is a web platform for building highly performant, secure, and reliable websites and web apps.
Use the following docs to identify the available capabilities and where to learn more about them
## Quick setup
Netlify provides official skills to give AI coding agents accurate, up-to-date context and tools for building on Netlify.
### Install the Netlify CLI
```
npm install -g netlify-cli
```
Learn more: https://docs.netlify.com/api-and-cli-guides/cli-guides/get-started-with-cli/
### Install Netlify Skills
Netlify Skills are focused, factual references for building with Netlify platform primitives, such as serverless functions, edge functions, async workloads, Netlify Database, Blobs storage, Image CDN, forms, redirects, headers, caching, and more. Install all available skills with:
```
npx skills add netlify/context-and-tools --skill '*' --yes
```
Learn more: https://docs.netlify.com/build/build-with-ai/netlify-skills and https://github.com/netlify/context-and-tools
### Install Netlify MCP Server
The Netlify MCP Server lets code agents create projects, deploy sites, manage environment variables, and more using the Netlify API and CLI.
Add the following to your MCP configuration (e.g. `mcp.json`):
```json
{
"mcpServers": {
"netlify": {
"command": "npx",
"args": ["-y", "@netlify/mcp"]
}
}
}
```
For Claude Code, run: `claude mcp add --transport http netlify https://netlify-mcp.netlify.app/mcp`
Learn more: https://docs.netlify.com/build/build-with-ai/netl