React Native Upgrade Helper MCP Server
Automates the React Native Upgrade Helper website to extract upgrade information and file diffs between React Native versions.
README
React Native Upgrade Helper MCP Server
A Model Context Protocol (MCP) server that automates the React Native Upgrade Helper website to extract upgrade information between React Native versions.
What It Does
This MCP server uses Playwright to automatically:
- Fill out the React Native Upgrade Helper form with your version details
- Extract comprehensive upgrade information including file diffs
- Return structured JSON data that AI assistants can use to help with React Native upgrades
Installation
- Clone and install dependencies:
git clone <repository-url>
cd react-native-upgrade-helper-mcp
npm install
- Install Playwright browser:
npx playwright install chromium
- Build the project:
npm run build
Configuration
Add this server to your MCP client configuration:
Claude Code
Add to ~/.config/claude-code/mcp_servers.json:
{
"mcpServers": {
"react-native-upgrade-helper": {
"command": "node",
"args": ["/absolute/path/to/react-native-upgrade-helper-mcp/dist/index.js"]
}
}
}
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"react-native-upgrade-helper": {
"command": "node",
"args": ["/absolute/path/to/react-native-upgrade-helper-mcp/dist/index.js"]
}
}
}
Cursor
Add to your MCP settings:
{
"servers": {
"react-native-upgrade-helper": {
"command": "node",
"args": ["/absolute/path/to/react-native-upgrade-helper-mcp/dist/index.js"]
}
}
}
Important: Replace /absolute/path/to/react-native-upgrade-helper-mcp/ with the actual absolute path to this project directory.
Usage
The server provides two tools:
1. get_upgrade_info
Get comprehensive upgrade information between React Native versions.
Parameters:
fromVersion(required): Source React Native version (e.g., "0.70.14")toVersion(required): Target React Native version (e.g., "0.74.0")packageName(optional): Package name (default: "com.example.app")projectName(optional): Project name (default: "ExampleApp")
Example:
@react-native-upgrade-helper get_upgrade_info fromVersion=0.70.14 toVersion=0.74.0
2. get_file_diff
Get specific file differences for the upgrade.
Parameters:
fromVersion(required): Source React Native versiontoVersion(required): Target React Native versionfileName(required): Specific file to get diff for (e.g., "package.json")packageName(optional): Package name (default: "com.example.app")projectName(optional): Project name (default: "ExampleApp")
Example:
@react-native-upgrade-helper get_file_diff fromVersion=0.70.14 toVersion=0.74.0 fileName=package.json
Example AI Prompts
Once configured, you can ask your AI assistant:
- "Help me upgrade my React Native app from 0.70.14 to 0.74.0. What changes do I need to make?"
- "Show me the specific changes needed for package.json when upgrading to RN 0.74.0"
- "What are the breaking changes when upgrading from React Native 0.70 to 0.74?"
Output Format
get_upgrade_info returns:
{
"fromVersion": "0.70.14",
"toVersion": "0.74.0",
"packageName": "com.example.app",
"projectName": "ExampleApp",
"url": "https://react-native-community.github.io/upgrade-helper/",
"summary": "Upgrade summary information",
"breakingChanges": ["Breaking change descriptions"],
"fileChanges": [
{
"fileName": "package.json",
"changeType": "modified",
"hasChanges": true,
"content": "diff content..."
}
],
"totalFiles": 15,
"modifiedFiles": 12,
"addedFiles": 2,
"deletedFiles": 1
}
get_file_diff returns:
{
"fromVersion": "0.70.14",
"toVersion": "0.74.0",
"fileName": "package.json",
"changeType": "modified",
"diff": "actual diff content...",
"found": true
}
Development
# Run in development mode
npm run dev
# Build for production
npm run build
# Test the server manually
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/list", "params": {}}' | node dist/index.js
Troubleshooting
Playwright issues: Ensure Chromium is installed:
npx playwright install chromium
Permission errors: Make sure the script is executable:
chmod +x dist/index.js
Path issues: Always use absolute paths in MCP configuration files.
Network timeouts: The server waits 15 seconds for page loads. For slower connections, modify the timeout in src/index.ts.
License
MIT License
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。