Skip to content
LangChain

Incwo MCP for LangChain

io.github.incwo/incwo

Secure MCP server for exploring incwo CRM data, documents, and email workflows.

client:LangChain transport:streamable-http

Install Incwo MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Incwo MCP in other clients