comment_on_post
Add comments to LinkedIn posts using a specific URL and custom text, enabling engagement and interaction directly through the Linked API MCP server.
Instructions
Allows you to leave a comment on a post (st.commentOnPost action).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
postUrl | Yes | The LinkedIn post URL to comment on (e.g., 'https://www.linkedin.com/posts/username_activity-id') | |
text | Yes | Comment text, must be up to 1000 characters. |
Input Schema (JSON Schema)
{
"properties": {
"postUrl": {
"description": "The LinkedIn post URL to comment on (e.g., 'https://www.linkedin.com/posts/username_activity-id')",
"type": "string"
},
"text": {
"description": "Comment text, must be up to 1000 characters.",
"type": "string"
}
},
"required": [
"postUrl",
"text"
],
"type": "object"
}