We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rideRTD/RTD-DevOps'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
github-pr.md•989 B
# Create a Pull Request
Walk the developer through the complete PR workflow.
## Steps
1. Check current state with `git_status_explained`
2. If on main/master branch:
- Explain why we don't commit directly to main
- Help create a feature branch: `git checkout -b feature/descriptive-name`
3. If there are uncommitted changes:
- Review what files changed
- Help stage appropriate files (not .env, credentials, etc.)
- Use `git_commit_guided` with a good commit message
4. Push to remote:
```
git push -u origin branch-name
```
5. Create the PR:
```
gh pr create --title "Brief description" --body "Detailed explanation"
```
6. Explain the PR review process:
- Reviewers will be assigned
- Address feedback with new commits
- PR will be merged when approved
## Commit Message Format
Explain conventional commits:
- feat: new feature
- fix: bug fix
- docs: documentation
- refactor: code restructure
- test: adding tests
- chore: maintenance