Skip to content
LangChain

seoul essentials for LangChain

io.github.do-droid/seoul-essentials

22,000+ Seoul public facility data for tourists: restrooms, pharmacies, WiFi, AEDs, and subway.

client:LangChain transport:stdio runtime:oci

Install seoul essentials in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "seoul-essentials": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/do-droid/seoul-essentials:0.2.0"],
        }
})

tools = await client.get_tools()

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

seoul essentials in other clients