We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yamadashy/repomix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pr-resolve-addressed.md•599 B
# Resolve Addressed PR Review Comments
Resolve review comments that have been **clearly addressed** in the code.
## Important
- Check each comment individually
- Only resolve if the specific fix is confirmed in the code
- Do NOT resolve comments that are unclear or still pending
## Steps
1. Get unresolved thread IDs from the PR
2. For each comment, verify the fix exists in the code
3. Resolve only confirmed threads using `resolveReviewThread` mutation
```bash
gh api graphql -f query='
mutation {
resolveReviewThread(input: {threadId: "PRRT_xxx"}) {
thread { isResolved }
}
}'
```