We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/airdrop-alpha/xcode-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
CONTRIBUTING.md•1.16 KiB
# Contributing to Xcode MCP Server
Thanks for your interest in contributing! 🎉
## Getting Started
1. Fork the repository
2. Clone your fork: `git clone https://github.com/YOUR_USERNAME/xcode-mcp.git`
3. Install dependencies: `npm install`
4. Create a branch: `git checkout -b feature/my-feature`
## Development
```bash
# Run in development mode (hot reload)
npm run dev
# Build TypeScript
npm run build
# Test with MCP Inspector
npm run inspect
```
## Making Changes
1. Make your changes in `src/`
2. Test locally with Claude Desktop or MCP Inspector
3. Ensure the build passes: `npm run build`
4. Commit with a clear message
## Pull Request Guidelines
- Keep PRs focused on a single change
- Include a clear description of what and why
- Update README.md if adding new tools
- Add/update tests if applicable
## Code Style
- TypeScript with strict mode
- Use async/await for async operations
- Handle errors gracefully
## Ideas for Contributions
- [ ] Workspace support (`.xcworkspace`)
- [ ] Simulator management tools
- [ ] Test execution and result parsing
- [ ] Better error messages
- [ ] Documentation improvements
## Questions?
Open an issue! We're happy to help.