react-docs
Provides AI assistants with access to documentation, TypeScript types, and source code of @gaddario98 React packages, enabling them to retrieve package docs, types, and search source files.
Click on "Deploy 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., "@react-docsShow me the types for react-core"
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.
@gaddario98/mcp-react-docs
MCP (Model Context Protocol) server che fornisce ad AI coding assistants la documentazione e il codice sorgente dei package React @gaddario98.
Packages serviti
Package | Descrizione |
| Framework React modulare: state, forms, queries, pages, auth |
| Form builder dinamico su TanStack Form + Jotai |
| Data fetching su TanStack Query + Jotai |
| Page orchestrator: forms + queries + SEO + lazy loading |
Related MCP server: daisyui-mcp-server
Tools disponibili
Tool | Descrizione |
| Elenca tutti i package con versione e descrizione |
| Ritorna il README.md completo di un package |
| Ritorna le definizioni TypeScript ( |
| Legge qualsiasi file sorgente di un package |
| Cerca un pattern (regex) nei file sorgente |
Configurazione per AI Tools
Gemini Code Assist
Aggiungi al file .gemini/settings.json del tuo workspace:
{
"mcpServers": {
"react-docs": {
"command": "npx",
"args": ["-y", "github:gaddario98/mcp-react-docs"],
"env": {
"GITHUB_TOKEN": "ghp_il_tuo_token_qui"
}
}
}
}Claude Code / Claude Desktop
Aggiungi a ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"react-docs": {
"command": "npx",
"args": ["-y", "github:gaddario98/mcp-react-docs"],
"env": {
"GITHUB_TOKEN": "ghp_il_tuo_token_qui"
}
}
}
}Cursor
In Cursor Settings → MCP Servers → Add:
Name:
react-docsCommand:
npx -y github:gaddario98/mcp-react-docs
VS Code + Copilot (settings.json)
{
"mcp": {
"servers": {
"react-docs": {
"command": "npx",
"args": ["-y", "github:gaddario98/mcp-react-docs"],
"env": {
"GITHUB_TOKEN": "ghp_il_tuo_token_qui"
}
}
}
}
}🔑 Come ottenere il GITHUB_TOKEN
Dato che l'MCP invia richieste direttamente a GitHub, senza un token incapperai nel limite di 60 richieste all'ora, limitando pesantemente o bloccando strumenti come search_source.
Per generare un Token:
Accedi a GitHub e vai in Settings > Developer Settings > Personal access tokens > Tokens (classic) (o usa i Fine-grained tokens se preferisci).
Clicca su Generate new token (classic).
Assegna un nome (es.
local_mcp_server).Nessuno scope particolare è obbligatorio se i repo (
gaddario98/react-core, ecc.) sono pubblici. Se in futuro i repo diverranno privati, spunta l'accessorepo.Clicca generate e copia il token (inizierà con
ghp_...).Aggiungilo all'interno dell'oggetto
"env"in tutte le configurazioni del tuo Editor come mostrato negli esempi sopra. In Cursor puoi configurarlo dal setup dell'MCP Server nelle Settings UI.
Test con MCP Inspector
npx @modelcontextprotocol/inspector npx -y github:gaddario98/mcp-react-docsSviluppo
# Avvia il server in modalità watch
yarn dev
# Avvia normalmente
yarn startThis server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
MCP server for stocksense-ai documentation, generated by doc2mcp.
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP server for the ReactUse library. Exposes 110+ React Hook signatures, examples, and API metadata so AI coding assistants can discover and use any hook from @reactuses/core directly.31,052-
- AlicenseAqualityAmaintenanceMCP server for daisyUI React components that enables AI coding assistants to search documentation, look up props, and retrieve code examples.592MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that provides tools to fetch live, version-accurate documentation, changelogs, examples, and method signatures for npm and PyPI packages, preventing AI coding agents from hallucinating stale APIs.15ISC
- AlicenseNot gradedqualityCmaintenanceMCP server for querying Preact documentation and ecosystem, including tools to search docs, get READMEs, and list packages.1062MIT