MedRecPro Drug Label Server for LangChain
com.medrecpro/drug-label-server
Search and export FDA drug labels by brand name, generic ingredient, or UNII code.
client:LangChain
transport:streamable-http
Install MedRecPro Drug Label Server in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"drug-label-server": {
"transport": "streamable_http",
"url": "https://www.medrecpro.com/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs