Skip to content
LangChain

Pinterest Ads MCP Server for LangChain

io.github.cesteral/pinterest-mcp

Pinterest Ads management — CRUD, async reports, targeting, and audience estimates

client:LangChain transport:streamable-http runtime:npm

Install Pinterest Ads MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pinterest-mcp": {
            "transport": "streamable_http",
            "url": "https://{host}/pinterest-mcp/mcp",
        }
})

tools = await client.get_tools()

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

Pinterest Ads MCP Server in other clients