share_post
Automate sharing LinkedIn posts with optional commentary using the LinkedIn MCP Server. Simplify engagement by sharing posts directly with added context.
Instructions
Share a LinkedIn post with optional commentary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commentary | No | Optional commentary to add when sharing | |
postId | Yes | LinkedIn post ID to share |
Input Schema (JSON Schema)
{
"properties": {
"commentary": {
"description": "Optional commentary to add when sharing",
"type": "string"
},
"postId": {
"description": "LinkedIn post ID to share",
"type": "string"
}
},
"required": [
"postId"
],
"type": "object"
}