Skip to content
LangChain

agentic ops for LangChain

io.buildforce/agentic-ops

Orchestration & technical-consulting MCP for end-to-end Salesforce, ServiceNow & HubSpot back-end.

client:LangChain transport:streamable-http

Install agentic ops in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agentic-ops": {
            "transport": "streamable_http",
            "url": "https://mcp.buildforce.io/mcp",
        }
})

tools = await client.get_tools()

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

agentic ops in other clients