UNPKG

rnr-mcp-server

Version:

A Model Context Protocol (MCP) server for React Native Reusables components, providing AI assistants with access to component source code, demos, and metadata for React Native development.

66 lines (65 loc) 1.63 kB
{ "name": "rnr-mcp-server", "version": "1.0.0", "description": "A Model Context Protocol (MCP) server for React Native Reusables components, providing AI assistants with access to component source code, demos, and metadata for React Native development.", "type": "module", "main": "./build/index.js", "bin": { "rnr-mcp": "./build/index.js" }, "files": [ "build/**/*", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "clean": "rm -rf build", "prepublishOnly": "npm run clean && npm run build && chmod +x build/index.js", "start": "node build/index.js", "dev": "tsc && node build/index.js", "test": "./test-package.sh", "examples": "./examples.sh" }, "keywords": [ "mcp", "model-context-protocol", "react-native", "react-native-reusables", "rnr", "ui-components", "react-native-web", "expo", "typescript", "ai-tools", "claude", "copilot", "nativewind" ], "author": "Janardhan Pollle <www.janardhanpolle@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/danieltgfischer/rnr-mcp-server" }, "bugs": { "url": "https://github.com/danieltgfischer/rnr-mcp-server/issues" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.16.0", "axios": "^1.8.4", "cheerio": "^1.0.0", "zod": "^3.24.2", "winston": "^3.15.0", "joi": "^17.13.3", "uuid": "^10.0.0" }, "devDependencies": { "@types/node": "^22.10.5", "@types/uuid": "^10.0.0", "typescript": "^5.7.2" } }