DataSnipe MCP for LangChain
app.datasnipe/datasnipe-mcp
Extract structured data points from research papers and other documents with an LLM.
client:LangChain
transport:streamable-http
Install DataSnipe MCP in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"datasnipe-mcp": {
"transport": "streamable_http",
"url": "https://datasnipe.app/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs