Kiwoom Securities MCP Server for LangChain
io.github.chunsam/kiwoom-mcp-server
Read-only MCP server for the Kiwoom Securities REST API: market data, account inquiry, ISA tax tool
client:LangChain
transport:stdio
runtime:npm
Install Kiwoom Securities MCP Server in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"kiwoom-mcp-server": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "kiwoom-mcp-server"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs