Skip to content
LangChain

Datacite for LangChain

io.github.pipeworx-io/datacite

DataCite MCP — DOIs for research datasets (free, no auth)

client:LangChain transport:streamable-http

Install Datacite in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "datacite": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/datacite/mcp",
        }
})

tools = await client.get_tools()

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

Datacite in other clients