Best for
- Developers using the Astro framework
- Developers who want to enhance their AI coding assistant's understanding of their project
Astro MCP is an experimental MCP server designed to provide AI assistants with runtime information and documentation support for Astro projects. It is suitable for Astro developers but should be used with caution due to its experimental nature.
Astro MCP server aims to help models understand your Astro project better by providing information that cannot be easily accessed just by looking at the project files, such as runtime information about the Astro server, up-to-date Astro docs content, and information about the Astro integrations you are using.
Run npx astro add astro-mcp in your Astro project directory, or manually install: npm install astro-mcp, then add the integration to your Astro config: integrations: [mcp()]. After installation, the MCP server will be available at http://localhost:4321/__mcp/sse.
{
"mcpServers": {
"astro-mcp": {
"url": "http://localhost:4321/__mcp/sse"
}
}
}