We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/very99/getutc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
CONTRIBUTING.md•1.31 KiB
# Contributing to GetUTC MCP Server
Thank you for your interest in contributing to GetUTC MCP Server! 🎉
## How to Contribute
### Reporting Issues
- Use the GitHub issue tracker to report bugs
- Include detailed information about your environment
- Provide steps to reproduce the issue
### Suggesting Features
- Open an issue with the "enhancement" label
- Describe the feature and its use case
- Explain why it would be valuable
### Code Contributions
1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Make your changes
4. Build and test (`npm run build`)
5. Commit your changes (`git commit -m 'Add amazing feature'`)
6. Push to the branch (`git push origin feature/amazing-feature`)
7. Open a Pull Request
## Development Setup
```bash
# Clone your fork
git clone https://github.com/very99/getutc-mcp.git
cd getutc-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Test locally
npm run dev
```
## Code Style
- Use TypeScript
- Follow existing code patterns
- Add comments for complex logic
- Keep functions focused and small
## Testing
- Test your changes with different MCP clients
- Verify all time formats work correctly
- Ensure fallback mechanisms function properly
## Questions?
Feel free to open an issue for any questions about contributing!