tokenized stock for LangChain
io.github.evidai/tokenized-stock
Buy/sell tokenized US stocks (Dinari dShares) in USDC. Daily USD cap guard. Sandbox default.
client:LangChain
transport:stdio
runtime:npm
Install tokenized stock in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"tokenized-stock": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "tokenized-stock-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs