Skip to content
LangChain

LinkedIn MCP (by TalkToHumans) for LangChain

io.github.coolsapiens/linkedin-mcp

Let AI tools securely access your LinkedIn network and DMs

client:LangChain transport:streamable-http

Install LinkedIn MCP (by TalkToHumans) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "linkedin-mcp": {
            "transport": "streamable_http",
            "url": "https://api.talktohumans.app/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

LinkedIn MCP (by TalkToHumans) in other clients