Skip to content
LangChain

Syncro for LangChain

io.github.wyre-technology/syncro-mcp

MCP server for Syncro MSP — customers, tickets, assets, invoices, and more.

client:LangChain transport:stdio runtime:oci

Install Syncro in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "syncro-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/wyre-technology/syncro-mcp:v1.4.7"],
        }
})

tools = await client.get_tools()

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

Syncro in other clients