create_post
Generate and publish LinkedIn posts with customizable text content and visibility settings (public or connections-only) using the MCP protocol.
Instructions
Create a LinkedIn post with text content and visibility settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Post content text | |
visibility | No | Post visibility | PUBLIC |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Post content text",
"type": "string"
},
"visibility": {
"default": "PUBLIC",
"description": "Post visibility",
"enum": [
"PUBLIC",
"CONNECTIONS"
],
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}