esa_get_comment
Retrieve a specific comment by its ID from the esa API, optionally including related data such as stargazers, through the Model Context Protocol.
Instructions
Get a specific comment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_id | Yes | ID of the comment to retrieve | |
include | No | レスポンスに含める関連データ (例: 'stargazers') |
Input Schema (JSON Schema)
{
"properties": {
"comment_id": {
"description": "ID of the comment to retrieve",
"type": "number"
},
"include": {
"description": "レスポンスに含める関連データ (例: 'stargazers')",
"type": "string"
}
},
"required": [
"comment_id"
],
"type": "object"
}