get_comment
Retrieve detailed information about a specific comment by ID, including content, creation timestamp, user, and post details, using the product-hunt-mcp server.
Instructions
Retrieve detailed information about a specific comment by ID.
Parameters:
- id (str, required): The comment's unique ID.
Returns:
- success (bool)
- data (dict): If successful, contains comment details:
- id, content, created_at, user, post, etc.
- error (dict, optional)
- rate_limits (dict)
Notes:
- Returns an error if the comment is not found.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"default": null,
"title": "Id",
"type": "string"
}
},
"title": "get_commentArguments",
"type": "object"
}