Skip to content
LangChain

postking mcp for LangChain

io.github.bitsandtea/postking-mcp

PostKing MCP server for managing brands, generating posts, scheduling content, and publishing blogs.

client:LangChain transport:streamable-http runtime:npm

Install postking mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

postking mcp in other clients