Skip to content
LangChain

pestprocrm for LangChain

io.github.liserichards/pestprocrm

Manage pest control operations — customers, scheduling, SMS, payments, and reporting.

client:LangChain transport:streamable-http

Install pestprocrm in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pestprocrm": {
            "transport": "streamable_http",
            "url": "https://www.pestprocrm.com/api/mcp",
        }
})

tools = await client.get_tools()

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

pestprocrm in other clients