Skip to content
LangChain

crossref mcp for LangChain

io.github.mrfentmen/crossref-mcp

Search scholarly works and resolve DOIs through Crossref. No key required.

client:LangChain transport:stdio runtime:npm

Install crossref mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "crossref-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "crossref-mcp"],
        }
})

tools = await client.get_tools()

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

crossref mcp in other clients