Skip to content
LangChain

postman for LangChain

com.mcparmory/postman

Create, organize, and manage API collections, specifications, and team workspaces

client:LangChain transport:stdio runtime:pypi

Install postman in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "postman": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["mcparmory-postman"],
        }
})

tools = await client.get_tools()

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

postman in other clients