Skip to content
LangChain

Genomic Intelligence for LangChain

ai.genomicintelligence/genomic-intelligence

Hosted DNA language models: promoter, splice, enhancer, chromatin, expression, annotation

client:LangChain transport:streamable-http tools:15

Install Genomic Intelligence in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "genomic-intelligence": {
            "transport": "streamable_http",
            "url": "https://mcp.genomicintelligence.ai/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Genomic Intelligence in other clients