We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gemyago/atlacp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
implementation-status.md•1.57 kB
# Implementation Status
## Completed Endpoints
- [x] GET /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id} (get_pr.go)
- [x] POST /repositories/{workspace}/{repo_slug}/pullrequests (create_pr.go)
- [x] POST /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/approve (approve_pr.go)
- [x] POST /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/merge (merge_pr.go)
- [x] PUT /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id} (update_pr.go)
## Pending Endpoints
- [ ] GET /repositories/{workspace}/{repo_slug}/pullrequests (list PR operation not implemented yet)
- [ ] GET /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/activity (PR activity not implemented)
- [ ] GET /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/comments (PR comments not implemented)
- [ ] POST /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}/comments (PR comment creation not implemented)
## Models Status
- [x] PullRequest (implemented in pullrequest.go)
- [x] Account (simplified implementation used for author information)
- [x] Repository (implemented as part of source/destination)
- [x] Commit (implemented for merge commit information)
## Known Issues
1. Parameter name inconsistencies between code and OpenAPI spec (see model-differences.md)
2. Some response fields might be missing in our models compared to the full OpenAPI specification
3. Error handling needs standardization across all API calls
4. Authentication mechanisms need to be unified