loading…
Search for a command to run...
loading…
An MCP (Model Context Protocol) server that provides AI tools with access to Fumadocs documentation. This makes it easier for AI assistants to help you integrat
An MCP (Model Context Protocol) server that provides AI tools with access to Fumadocs documentation. This makes it easier for AI assistants to help you integrate Fumadocs into your existing projects.
An MCP (Model Context Protocol) server that provides AI tools with access to Fumadocs documentation. This makes it easier for AI assistants to help you integrate Fumadocs into your existing projects.
npx fumadocs-mcp
npm install -g fumadocs-mcp
fumadocs-mcp
git clone https://github.com/k4cper-g/fumadocs-mcp
cd fumadocs-mcp
npm install
npm run build
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"fumadocs": {
"command": "npx",
"args": ["fumadocs-mcp"]
}
}
}
Or if installed from source:
{
"mcpServers": {
"fumadocs": {
"command": "node",
"args": ["/path/to/fumadocs-mcp/build/index.js"]
}
}
}
The MCP will be automatically available when configured in Claude Desktop.
list_topicsBrowse available documentation sections and topics.
Parameters:
- section (optional): "all" | "cli" | "headless" | "framework" | "mdx" | "ui"
search_docsSearch documentation by keyword.
Parameters:
- query (required): Search query string
- section (optional): Filter to a specific section
get_pageFetch the full content of a documentation page.
Parameters:
- path (required): Documentation path (e.g., "/docs/manual-installation/next")
get_setup_guideGet a complete setup guide for adding Fumadocs to an existing project.
Parameters:
- framework (required): "next" | "react-router" | "tanstack-start" | "waku"
- includeUI (optional): Whether to include UI setup instructions (default: true)
get_componentGet documentation for a specific UI component.
Parameters:
- component (required): Component name (e.g., "accordion", "tabs", "codeblock")
Once configured, you can ask Claude things like:
# Install dependencies
npm install
# Build
npm run build
# Run in development mode
npm run dev
# Test with MCP Inspector
npm run inspector
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"fumadocs-mcp": {
"command": "npx",
"args": []
}
}
}