Skip to content
LangChain

EvidInvest for LangChain

io.github.evidinvest/mcp-server

SEC filings and financial data for AI agents: 59 tools for statements, valuation and supply chains.

client:LangChain transport:streamable-http runtime:npm

Install EvidInvest in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-server": {
            "transport": "streamable_http",
            "url": "https://mcp.evidinvest.com/mcp",
        }
})

tools = await client.get_tools()

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

EvidInvest in other clients