Skip to content
LangChain

FastSocial for LangChain

io.github.socialappsceduler-eng/fastsocial

Schedule and manage social media posts across 7 platforms directly from Claude.

client:LangChain transport:stdio runtime:oci

Install FastSocial in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "fastsocial": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/socialappsceduler-eng/fastsocial-mcp:latest"],
        }
})

tools = await client.get_tools()

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

FastSocial in other clients