Skip to content
LangChain

Pith — Instagram publishing for LangChain

io.github.pith-day/pith-mcp

Publish to Instagram from chat — official Graph API, OAuth 2.1, free for your own posts.

client:LangChain transport:streamable-http

Install Pith — Instagram publishing in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pith-mcp": {
            "transport": "streamable_http",
            "url": "https://pith.day/api/mcp",
        }
})

tools = await client.get_tools()

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

Pith — Instagram publishing in other clients