AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

get_pull_request_comment

Retrieve specific pull request comment details using owner, repository, pull number, and comment ID. Facilitates precise access to collaboration feedback on AtomGit MCP Server.

Instructions

Get details of a specific pull request comment

Input Schema

NameRequiredDescriptionDefault
comment_idYes
ownerYes
pull_numberYes
repoYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "comment_id": { "type": "number" }, "owner": { "type": "string" }, "pull_number": { "type": "number" }, "repo": { "type": "string" } }, "required": [ "owner", "repo", "pull_number", "comment_id" ], "type": "object" }
ID: oymm0hus7s