- Clone the repository
- Install dependencies:
bun install
- Run tests:
bun test - Format code:
bun run format - Lint code:
bun run lint - Build project:
bun run build
To add your development MCP server to Claude Desktop:
- Build the project:
bun run build
- Add to your Claude Desktop config:
{ "mcpServers": { "react-native-debugger-mcp": { "command": "bun", "args": ["/path/to/your/project/dist/main.js"] } } }
This project uses standard-version for automated version management. Run bun run release to create a new version.
feat: New feature (bumps minor version)fix: Bug fix (bumps patch version)BREAKING CHANGE: Breaking change (bumps major version)
- Ensure you're logged in to npm:
npm login
- Build the project:
bun run build
- Publish the package:
npm publish
Remember to update the version number using bun run release before publishing new versions.