Citation Check for LangChain
io.github.secondstageturbine/citation-check
Does a cited URL exist, and does the source name what your claim names? Two answers.
client:LangChain
transport:streamable-http
tools:2
Install Citation Check in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"citation-check": {
"transport": "streamable_http",
"url": "https://exmachina-ai.fly.dev/verify",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs