MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

MCP server by igorfelipeduca

创建于 2/21/2026
更新于 3 days ago
Repository documentation and setup instructions

reacticx-mcp

npm version npm downloads license

MCP server that provides documentation for the Reacticx React Native component library. Works with any MCP-compatible client.

Tools

| Tool | Description | |------|-------------| | list_components | List all 90+ components, optionally filtered by category | | get_component_docs | Fetch full docs for a component (props, code, examples) | | search_components | Search components by keyword | | getting_started | Installation and setup guide | | get_dependencies | Get combined dependency install commands |

Setup

Claude Code

claude mcp add reacticx -- npx -y reacticx-mcp

Or add to ~/.claude/.mcp.json:

{
  "mcpServers": {
    "reacticx": {
      "command": "npx",
      "args": ["-y", "reacticx-mcp"]
    }
  }
}

Cursor

Go to Settings > MCP Servers > Add Server:

{
  "mcpServers": {
    "reacticx": {
      "command": "npx",
      "args": ["-y", "reacticx-mcp"]
    }
  }
}

Windsurf

Add to your MCP config:

{
  "mcpServers": {
    "reacticx": {
      "command": "npx",
      "args": ["-y", "reacticx-mcp"]
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your project:

{
  "servers": {
    "reacticx": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "reacticx-mcp"]
    }
  }
}

Cline

Add to your MCP settings:

{
  "mcpServers": {
    "reacticx": {
      "command": "npx",
      "args": ["-y", "reacticx-mcp"]
    }
  }
}

Any MCP Client

The server uses stdio transport. Run:

npx -y reacticx-mcp

License

MIT

快速设置
此服务器的安装指南

安装包 (如果需要)

npx @modelcontextprotocol/server-reacticx-mcp

Cursor 配置 (mcp.json)

{ "mcpServers": { "igorfelipeduca-reacticx-mcp": { "command": "npx", "args": [ "igorfelipeduca-reacticx-mcp" ] } } }