Skip to content
LangChain

arjunkmrm tutorials for LangChain

ai.smithery/arjunkmrm-tutorials

Analyze stocks and SEC filings to surface key insights, from price and volume to insider activity…

client:LangChain transport:streamable-http

Install arjunkmrm tutorials in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "arjunkmrm-tutorials": {
            "transport": "streamable_http",
            "url": "https://server.smithery.ai/@arjunkmrm/tutorials/mcp",
        }
})

tools = await client.get_tools()

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

arjunkmrm tutorials in other clients