send_connection_request
Send LinkedIn connection requests with an optional note or email using the Linked API MCP server. Input a person's LinkedIn URL to initiate contact directly through the tool.
Instructions
Allows you to send a connection request to a person (st.sendConnectionRequest action).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | Optional. Email address required by some people for sending connection requests to them. If it is required and not provided, the connection request will fail. | ||
note | No | Optional. Note to include with the connection request. | |
personUrl | Yes | Public or hashed LinkedIn URL of the person you want to send a connection request to. (e.g., 'https://www.linkedin.com/in/john-doe') |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Optional. Email address required by some people for sending connection requests to them. If it is required and not provided, the connection request will fail.",
"type": "string"
},
"note": {
"description": "Optional. Note to include with the connection request.",
"type": "string"
},
"personUrl": {
"description": "Public or hashed LinkedIn URL of the person you want to send a connection request to. (e.g., 'https://www.linkedin.com/in/john-doe')",
"type": "string"
}
},
"required": [
"personUrl"
],
"type": "object"
}