Integrations
Provides access to Astro documentation with search capability, allowing AI agents to look up and reference specific Astro documentation sections when helping users with Astro-related tasks.
Astro Docs MCP Server
An MCP server for providing Astro documentation access to AI agents. This server allows AI assistants to look up and reference Astro documentation when helping users with Astro-related tasks.
This TypeScript-based MCP server implements a documentation retrieval system for Astro. It demonstrates core MCP concepts by providing:
- Resources representing Astro documentation sections with URIs and metadata
- Tools for searching Astro documentation
- Prompts for common Astro questions and tasks
Features
Resources
- List and access Astro documentation via
astro-docs://
URIs - Each doc section has a title, content, and category
- Plain text mime type for simple content access
Tools
search_docs
- Search Astro documentation- Takes a search query as required parameter
- Returns matching documentation sections
Prompts
explain_astro_islands
- Get detailed explanations of Astro Islands architectureastro_project_setup
- Guide for setting up a new Astro projectastro_vs_other_frameworks
- Compare Astro with other web frameworks
Project Structure
src/
- Source code for the MCP serverindex.ts
- Main MCP server implementationscripts/
- Helper scripts for building and testingbuild.js
- Build script that transpiles TypeScript and creates launcher scriptstest-client.js
- Test client for verifying server functionality
bin/
- Generated executable scriptsastro-docs-mcp
- Main launcher script for the MCP server
build/
- Compiled JavaScript files (generated)
Requirements
- Node.js v16 or later is required
- Node.js v20+ is recommended for best compatibility
- The server uses ES modules syntax
- pnpm package manager (preferred over npm)
Installation
Installing Dependencies
Install dependencies:
Build the server:
For development with auto-rebuild:
Running the Server
Configuration with Claude Desktop
To use with Claude Desktop, add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
Important: The configuration must use the absolute path to the script:
Replace /full/absolute/path/to/astro-mcp/
with the actual absolute path to your installation directory.
For example, if the repository is at /Users/username/projects/astro-mcp
, the command would be:
Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
The Inspector will provide a URL to access debugging tools in your browser.
Testing
A test client is provided to verify the server is working correctly:
This will send several commands to the server and display the responses.
Troubleshooting
If you encounter issues with the server:
- Path Issues: The most common problem is incorrect paths in the configuration. Make sure:
- You're using an absolute path to the script in claude_desktop_config.json
- The path points to
bin/astro-docs-mcp
(not the root script) - The build directory exists and contains index.js (
ls -la build/
) - All scripts have executable permissions
- "Module not found" errors: If you see errors like
Cannot find module '/build/index.js'
, check:- That you've run the build step (
pnpm run build
) - That the script is being run from the correct directory
- That absolute paths are being used for the script execution
- That you've run the build step (
- Node.js Version: Make sure you're using Node.js v16 or later. For best results, use v20+.Copy
- Script Permissions: Ensure the scripts have executable permissions:Copy
- JSON Output Issues: Debug messages being sent to stdout will confuse Claude Desktop because it expects only valid JSON. Our scripts properly redirect all debug output to stderr.
Usage with Claude Desktop
- Install the server by following the installation steps above.
- Configure Claude Desktop by editing the configuration file to include the absolute path to the script:Copy
- Restart Claude Desktop.
- You can now interact with the Astro documentation using the following commands:
list
- List available Astro documentation sectionssearch <query>
- Search the Astro documentationread astro-docs:///<id>
- Read a specific documentation section
Future Enhancements
- Fetch real-time documentation from Astro's website
- Add more comprehensive documentation sections
- Implement documentation versioning support
- Add code examples and snippets for common Astro patterns
This server cannot be installed
An MCP server that provides AI assistants with access to Astro documentation, enabling them to search and reference Astro docs when helping users with Astro-related tasks.