react-native-toolkit
Provides AI agents with accurate, version-aware documentation for React Native, Expo, React Navigation, and Ignite by automatically detecting project dependencies and fetching matching documentation.
README
MCP React Native Toolkit
A Model Context Protocol (MCP) server that provides AI agents with accurate, version-aware documentation for React Native, Expo, React Navigation, and Ignite.
Quick Start
git clone https://github.com/ItamiForge/mcp-react-native-toolkit.git
cd mcp-react-native-toolkit
npm install && npm run build
vscode
Add the MCP server to your editor's configuration:
Edit ~/.vscode/mcp.json (global) or .vscode/mcp.json (per-project):
{
"servers": {
"react-native-toolkit": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/mcp-react-native-toolkit/dist/index.js"]
}
}
}
cursor
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"react-native-toolkit": {
"command": "node",
"args": ["/absolute/path/to/mcp-react-native-toolkit/dist/index.js"]
}
}
}
claude
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"react-native-toolkit": {
"command": "node",
"args": ["/absolute/path/to/mcp-react-native-toolkit/dist/index.js"]
}
}
}
3. Use It (Zero Config Per-Project)
Just start asking your AI about React Native! The toolkit:
- Reads your project's
package.jsonto detect versions - Fetches matching docs on first request (cached for future use)
- Serves version-accurate documentation automatically
Multi-Project Workflow
The toolkit handles multiple projects with different versions seamlessly:
~/projects/
├── legacy-app/ # expo@50.0.0
│ └── package.json
└── new-app/ # expo@52.0.0
└── package.json
What Happens
┌─────────────────────────────────────────────────────────────────┐
│ You open legacy-app/ and ask: "How do I use Camera?" │
├─────────────────────────────────────────────────────────────────┤
│ 1. Toolkit reads package.json → detects expo@50.0.0 │
│ 2. Checks docs/expo/50/ → NOT FOUND │
│ 3. Fetches from git branch `sdk-50` → 745 files in ~3s │
│ 4. Caches at docs/expo/50/ │
│ 5. Returns Expo 50 documentation │
└─────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ You switch to new-app/ and ask: "How do I use Camera?" │
├─────────────────────────────────────────────────────────────────┤
│ 1. Toolkit reads package.json → detects expo@52.0.0 │
│ 2. Checks docs/expo/52/ → NOT FOUND │
│ 3. Fetches from git branch `sdk-52` → 745 files in ~3s │
│ 4. Caches at docs/expo/52/ │
│ 5. Returns Expo 52 documentation │
└─────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ You go back to legacy-app/ and ask another question │
├─────────────────────────────────────────────────────────────────┤
│ 1. Toolkit reads package.json → detects expo@50.0.0 │
│ 2. Checks docs/expo/50/ → FOUND ✓ │
│ 3. Returns cached Expo 50 documentation instantly │
└─────────────────────────────────────────────────────────────────┘
Resulting Cache Structure
mcp-react-native-toolkit/
└── docs/
├── expo/
│ ├── 50/ # Cached for legacy-app
│ └── 52/ # Cached for new-app
├── react-native/
│ └── latest/ # Shared (no versioned docs available)
└── react-navigation/
├── 6/ # If you have a v6 project
└── 7/ # If you have a v7 project
Commands Reference
| Command | Purpose |
|---|---|
npm install && npm run build |
Initial setup (one time) |
npm run build |
Rebuild after pulling updates |
npm run refresh-docs |
Pre-fetch latest docs for offline use |
npm run fetch-docs |
Fetch docs only (no optimization) |
npm run optimize-docs |
Optimize existing cached docs |
npm run generate-templates |
Generate AI framework configuration files |
npm test |
Run test suite |
Available Tools
| Tool | Description |
|---|---|
detect-project-context |
Detects React Native, Expo, and library versions from package.json |
search-docs |
Lists available documentation topics for a library |
get-library-docs |
Retrieves specific documentation with pagination |
semantic-search-docs |
AI-powered semantic search using embeddings to find relevant documentation |
validate-api |
Validates if an API symbol exists (checks node_modules first) |
find-examples |
Finds code examples for a topic |
get-best-practices |
Returns performance and architecture best practices |
resolve-library |
Resolves fuzzy library names to exact IDs |
generate-component-scaffold |
Generates boilerplate code for common React Native patterns |
compare-api-versions |
Compares API differences between library versions |
suggest-migration-path |
Provides step-by-step migration guidance between versions |
generate-ai-template |
Generates configuration files for AI coding assistants |
generate-component-scaffold
Generates boilerplate code for common React Native patterns like optimized FlatLists, navigation screens, forms, and more.
Parameters:
scaffoldId(optional): ID of the scaffold template (e.g., 'flatlist-basic', 'stack-navigator')language(optional): 'typescript' or 'javascript' (default: 'typescript')listScaffolds(optional): Set to true to see all available scaffoldscategory(optional): Filter by category ('list', 'navigation', 'form', 'api', 'storage', 'animation')
Available Scaffolds:
flatlist-basic- Basic FlatList with proper typingflatlist-optimized- Performance-optimized FlatList with memoizationflatlist-infinite-scroll- FlatList with pagination and infinite scrollstack-navigator- React Navigation stack navigator setuptab-navigator- React Navigation tab navigator setupform-basic- Form with controlled inputs and validationapi-fetch- API data fetching with loading/error statesmmkv-storage- MMKV persistent storage hooksreanimated-gesture- Reanimated + Gesture Handler animation
compare-api-versions
Compares API differences between two versions of a library, showing added, removed, and modified APIs.
Parameters:
library(required): Library to comparefromVersion(required): Starting versiontoVersion(required): Target versiondetailLevel(optional): 'summary' or 'detailed'
suggest-migration-path
Provides step-by-step migration guidance for upgrading between library versions.
Parameters:
library(required): Library to migratefromVersion(optional): Starting version (or 'auto' to detect)toVersion(required): Target versionformat(optional): 'detailed', 'checklist', or 'summary'includeCodeExamples(optional): Include before/after code examples
generate-ai-template
Generates configuration files for 50+ AI coding assistants and agentic frameworks.
Parameters:
framework(optional): Target framework IDlistFrameworks(optional): Set to true to see all supported frameworksgenerateAll(optional): Generate templates for all frameworksincludeExamples(optional): Include code examples in templates
Supported Frameworks (53 total):
<details> <summary><b>IDE Extensions (9)</b></summary>
| ID | Name | Output File |
|---|---|---|
cursor |
Cursor | .cursorrules |
vscode-copilot |
GitHub Copilot (VS Code) | .github/copilot-instructions.md |
windsurf |
Windsurf | .windsurfrules |
kiro |
Kiro | .kiro/rules.md |
zed |
Zed | .zed/settings.json |
jetbrains |
JetBrains AI | .idea/ai-assistant.xml |
trae |
Trae | .trae/rules.md |
vs2022 |
Visual Studio 2022 Copilot | .vs/copilot-instructions.md |
lm-studio |
LM Studio | .lmstudio/config.json |
</details>
<details> <summary><b>Agentic Assistants (10)</b></summary>
| ID | Name | Output File |
|---|---|---|
cline |
Cline | .clinerules |
roo-code |
Roo Code | .roo/rules.md |
augment |
Augment | .augment/settings.json |
continue |
Continue | .continuerc.json |
cody |
Sourcegraph Cody | .sourcegraph/cody.json |
supermaven |
Supermaven | .supermaven/config.json |
tabnine |
Tabnine | .tabnine.json |
amazon-q |
Amazon Q | .aws/amazonq.md |
qodo-gen |
Qodo Gen | .qodo/settings.json |
zencoder |
ZenCoder | .zencoder/config.json |
</details>
<details> <summary><b>CLI Tools (14)</b></summary>
| ID | Name | Output File |
|---|---|---|
claude-code |
Claude Code | CLAUDE.md |
aider |
Aider | .aider.conf.yml |
codex-cli |
Codex CLI | .codex/instructions.md |
gemini-cli |
Gemini CLI | .gemini/settings.json |
copilot-cli |
GitHub Copilot CLI | .copilot/config.json |
amp |
Amp | .amp/config.md |
warp |
Warp AI | .warp/config.yaml |
goose |
Goose | .goose/config.yaml |
mentat |
Mentat | .mentat/config.yaml |
plandex |
Plandex | .plandex/config.json |
opencode |
OpenCode | .opencode/config.json |
rovo-dev |
Rovo Dev | .rovo/config.json |
factory |
Factory | .factory/config.json |
qwen-coder |
Qwen Coder | .qwen/config.json |
</details>
<details> <summary><b>Autonomous Agents (5)</b></summary>
| ID | Name | Output File |
|---|---|---|
devin |
Devin | .devin/settings.json |
openhands |
OpenHands | .openhands/config.json |
swe-agent |
SWE-Agent | .swe-agent/config.yaml |
sweep |
Sweep | sweep.yaml |
gpt-engineer |
GPT Engineer | .gpt-engineer/config.json |
</details>
<details> <summary><b>Web Platforms (13)</b></summary>
| ID | Name | Output File |
|---|---|---|
claude |
Claude Projects | CLAUDE.md |
claude-desktop |
Claude Desktop | CLAUDE.md |
chatgpt |
ChatGPT Projects | chatgpt-instructions.md |
gemini |
Gemini | gemini-instructions.md |
perplexity |
Perplexity | .perplexity/instructions.md |
replit |
Replit AI | .replit-ai |
v0 |
Vercel v0 | v0-instructions.md |
bolt |
Bolt.new | .bolt/config.md |
lovable |
Lovable | lovable-instructions.md |
pythagora |
Pythagora | .pythagora/config.json |
boltai |
BoltAI | .boltai/config.json |
crush |
Crush | .crush/config.json |
emdash |
Emdash | .emdash/config.json |
</details>
<details> <summary><b>Other (2)</b></summary>
| ID | Name | Output File |
|---|---|---|
copilot-agent |
GitHub Copilot Agent | .github/copilot-instructions.md |
generic |
Generic | ai-instructions.md |
</details>
CLI Usage:
# List all supported frameworks
npm run generate-templates -- --list
# Generate Cursor rules
npm run generate-templates -- cursor
# Generate to a specific directory
npm run generate-templates -- vscode-copilot --output-dir ./my-project
# Generate all templates
npm run generate-templates -- --all --output-dir ./ai-configs
See examples/custom-source.md to add your own documentation sources.
Examples
See the examples/ directory for integration guides:
- LangChain Integration - Build a React Native coding agent
- LlamaIndex Integration - RAG with local documentation
- Adding Custom Sources - Add Supabase, Reanimated, etc.
Contributing
See CONTRIBUTING.md for guidelines.
License
MIT - see LICENSE
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.