sync_conversation
Sync LinkedIn conversations to enable polling and interaction for AI assistants via the Linked API MCP server, ensuring seamless communication integration.
Instructions
Allows you to sync a conversation so you can start polling it (st.syncConversation action).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
personUrl | Yes | The LinkedIn URL of the person whose conversation you want to synchronize (e.g., 'https://www.linkedin.com/in/john-doe') |
Input Schema (JSON Schema)
{
"properties": {
"personUrl": {
"description": "The LinkedIn URL of the person whose conversation you want to synchronize (e.g., 'https://www.linkedin.com/in/john-doe')",
"type": "string"
}
},
"required": [
"personUrl"
],
"type": "object"
}