comment_on_post
Add a meaningful comment to a LinkedIn post by specifying the post ID and comment text, facilitating engagement and interaction via the LinkedIn MCP Server.
Instructions
Add a thoughtful comment to a LinkedIn post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | Comment text | |
postId | Yes | LinkedIn post ID |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Comment text",
"type": "string"
},
"postId": {
"description": "LinkedIn post ID",
"type": "string"
}
},
"required": [
"postId",
"comment"
],
"type": "object"
}