Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
performance_guidelines | Get performance optimization guidelines for Linked API MCP tools |
parameter_usage | Learn when to use optional parameters in Linked API requests |
background_workflows | Learn how Linked API background workflows provide optimal UX |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
send_message | Allows you to send a message to a person (st.sendMessage action). |
sync_conversation | Allows you to sync a conversation so you can start polling it (st.syncConversation action). |
poll_conversations | Execute multiple conversation sync workflows to monitor for new messages across standard LinkedIn and Sales Navigator conversations. |
fetch_person | Allows you to open a person page to retrieve their basic information and perform additional person-related actions if needed. (st.openPersonPage action). Allows additional optional retrieval of experience, education, skills, languages, posts, comments and reactions. ⚠️ PERFORMANCE WARNING: Only set additional retrieval flags to true if you specifically need that data. Each additional parameter significantly increases execution time: 💡 Recommendation: Start with basic info only. Only request additional data if the user explicitly asks for it or if it's essential for the current task. |
fetch_company | Allows you to open a company page to retrieve its basic information (st.openCompanyPage action). Can optionally retrieve employees, posts and decision makers. |
fetch_post | This action allows you to open a post to retrieve its data. (st.openPost action). |
search_companies | Allows you to search for companies applying various filtering criteria (st.searchCompanies action). |
search_people | Allows you to search people applying various filtering criteria (st.searchPeople action). |
send_connection_request | Allows you to send a connection request to a person (st.sendConnectionRequest action). |
check_connection_status | Allows you to check the connection status between your account and another person (st.checkConnectionStatus action). |
withdraw_connection_request | Allows you to withdraw the connection request sent to a person (st.withdrawConnectionRequest action). |
retrieve_pending_requests | Allows you to retrieve pending connection requests sent from your account. (st.retrievePendingRequests action). |
retrieve_connections | allows you to retrieve your connections and perform additional person-related actions if needed (st.retrieveConnections action). |
remove_connection | Allows you to remove a person from your connections (st.removeConnection action). |
react_to_post | Allows you to react to a post using any available reaction type (st.reactToPost action). |
comment_on_post | Allows you to leave a comment on a post (st.commentOnPost action). |
retrieve_ssi | Allows you to retrieve your current SSI (Social Selling Index) (st.retrieveSSI action). |
retrieve_performance | Allows you to retrieve performance analytics from your LinkedIn dashboard (st.retrievePerformance action). |
get_api_usage_stats | Retrieve Linked API usage statistics |
nv_send_message | Allows you to send a message to a person in Sales Navigator (nv.sendMessage action) |
nv_sync_conversation | Allows you to sync a conversation in Sales Navigator so you can start polling it. (nv.syncConversation action). |
nv_fetch_person | Allows you to open a person page in Sales Navigator to retrieve their basic information (nv.openPersonPage action). |
nv_fetch_company | Allows you to open a company page in Sales Navigator to retrieve its basic information (nv.openCompanyPage action). Can optionally retrieve employees and decision makers. |
nv_search_companies | Allows you to search for companies in Sales Navigator applying various filtering criteria. (nv.searchCompanies action). |
nv_search_people | Allows you to search people in Sales Navigator applying various filtering criteria. (nv.searchPeople action). |
execute_custom_workflow | Execute a custom workflow definition |
get_workflow_result | Get workflow result by ID |
restore_workflow | CONTINUE LISTENING TO BACKGROUND WORKFLOW - THIS IS NORMAL OPERATION! Background workflows are OPTIMAL BEHAVIOR for Linked API operations and keep the MCP client responsive. When a workflow runs in the background, this tool should be used with the provided workflowId and functionName parameters to continue listening for updates. The workflow continues processing in the background while you wait. This is the STANDARD way Linked API works - background processing provides optimal user experience! |