- Home
- MCP servers
- Reacticx
Reacticx
- javascript
2
GitHub Stars
javascript
Language
3 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
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.
How to use
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.
How to install
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-mcp
If 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"]
}
}
}
Additional notes
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.
Available tools
list_components
List all components, optionally filtered by category.
get_component_docs
Fetch full documentation for a component, including props, code examples, and usage notes.
search_components
Search components by keyword to discover relevant components quickly.
getting_started
Installation and setup guidance to begin using the MCP server.
get_dependencies
Provide combined dependency install commands for quick setup.