home / mcp / reacticx mcp server
Provides Reacticx React Native component documentation via an MCP server for any MCP-compatible client.
Configuration
View docs{
"mcpServers": {
"igorfelipeduca-reacticx-mcp": {
"command": "npx",
"args": [
"-y",
"reacticx-mcp"
]
}
}
}You can rely on this MCP server to access up-to-date Reacticx React Native component documentation through any MCP-compatible client. It exposes a concise set of docs endpoints so you can quickly discover components, their props, usage examples, and related notes directly from your editor or tooling environment.
This MCP server uses a standard stdio transport, allowing you to query component documentation from your MCP client without network requests. To start using it, run the server locally and connect your MCP client to the provided stdio channel. You can then list all components, fetch full docs for a specific component, search components by keyword, and retrieve a combined set of dependency install commands for quick setup.
Prerequisites: ensure you have a recent version of Node.js and npm installed on your system. You do not need to install any additional server binaries for this MCP server beyond what is shown here.
# Start the MCP server using the stdio transport
npx -y reacticx-mcpIf you want to configure a client to automatically connect, use the following MCP configuration snippet. This demonstrates how to expose the server under a named MCP entry and connect via stdio when your client launches.
{
"mcpServers": {
"reacticx": {
"command": "npx",
"args": ["-y", "reacticx-mcp"]
}
}
}The MCP server supports integration with multiple clients and tooling options. You can configure clients such as Claude, Cursor, Windsurf, VS Code, Cline, and any standard MCP client to load this server using the provided stdio command and the JSON configuration example above. There are no required environment variables shown for running the server in this configuration. If you need to reference the exact commands for a particular client, copy the command and arguments exactly as shown here to avoid any discrepancies.
List all components, optionally filtered by category.
Fetch full documentation for a component, including props, code examples, and usage notes.
Search components by keyword to discover relevant components quickly.
Installation and setup guidance to begin using the MCP server.
Provide combined dependency install commands for quick setup.