Flatland for LangChain
com.flatlandfi/flatland
Financial reasoning infrastructure for AI agents: typed models, deterministic compilation, receipts
client:LangChain
transport:stdio
runtime:npm
Install Flatland in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"flatland": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "flatland-client"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs