BluestoneApps React Native 标准
STDIO提供React Native编码标准和示例的MCP服务器
提供React Native编码标准和示例的MCP服务器
This is a Node.js implementation of the BluestoneApps Coding Standards and Examples MCP server.
This MCP server provides access to React Native coding standards and code examples through the Model Context Protocol (MCP). It can be used with MCP clients like Windsurf IDE.
npm install
npm run build
Start the server:
npm start
To use with MCP clients, configure them to connect to this server.
The server provides the following tools:
get_project_structure
: Get project structure standardsget_api_communication
: Get API communication standardsget_component_design
: Get component design standardsget_state_management
: Get state management standardsget_component_example
: Get a specific component exampleget_hook_example
: Get a specific hook exampleget_service_example
: Get a specific service exampleget_screen_example
: Get a specific screen exampleget_theme_example
: Get a specific theme examplelist_available_examples
: List all available code examplesFor Windsurf IDE, update the mcp_config.json
with:
{ "servers": { "bluestoneapps": { "command": "node", "args": ["/path/to/build/index.js"], "description": "BluestoneApps Coding Standards and Examples", "displayName": "BluestoneApps MCP Server", "timeout": 30000 } } }