remove_connection
Remove a LinkedIn connection by specifying their profile URL. Integrates with MCP server to manage connections through AI assistants like Claude, Cursor, and VS Code.
Instructions
Allows you to remove a person from your connections (st.removeConnection action).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
personUrl | Yes | Public or hashed LinkedIn URL of the person you want to remove from your connections. (e.g., 'https://www.linkedin.com/in/john-doe') |
Input Schema (JSON Schema)
{
"properties": {
"personUrl": {
"description": "Public or hashed LinkedIn URL of the person you want to remove from your connections. (e.g., 'https://www.linkedin.com/in/john-doe')",
"type": "string"
}
},
"required": [
"personUrl"
],
"type": "object"
}