Skip to content
LangChain

Subotiz Dev MCP(Deprecated) for LangChain

io.github.hanwei30/dev-mcp

Connect AI assistants to Subotiz - Using Subotiz's external capabilities through natural language

client:LangChain transport:streamable-http

Install Subotiz Dev MCP(Deprecated) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "dev-mcp": {
            "transport": "streamable_http",
            "url": "https://api.stg.subotiz.com/mcp/ping",
        }
})

tools = await client.get_tools()

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

Subotiz Dev MCP(Deprecated) in other clients