Skip to content
LangChain

bolsai mcp for LangChain

io.github.viniciuslazzari/bolsai-mcp

Brazilian stock market data (B3, CVM, BCB) for AI assistants: quotes, fundamentals, dividends, FIIs.

client:LangChain transport:stdio runtime:pypi

Install bolsai mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "bolsai-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["bolsai-mcp"],
        }
})

tools = await client.get_tools()

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

bolsai mcp in other clients