Skip to content
LangChain

refcheck for LangChain

io.github.benchoi93/refcheck

Verify academic citations against real databases. Catches hallucinated references, exports BibTeX.

client:LangChain transport:stdio runtime:pypi

Install refcheck in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "refcheck": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["refcheck-mcp"],
        }
})

tools = await client.get_tools()

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

refcheck in other clients