Skip to content
LangChain

PostSyncer for LangChain

io.github.postsyncer/postsyncer

Schedule, publish, and analyze social media posts across 11 platforms from any MCP client.

client:LangChain transport:streamable-http

Install PostSyncer in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "postsyncer": {
            "transport": "streamable_http",
            "url": "https://postsyncer.com/mcp",
        }
})

tools = await client.get_tools()

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

PostSyncer in other clients