CiteWire for LangChain
io.github.openly-useful/citewire
Attribution-first MCP server for free news sources and free article APIs.
client:LangChain
transport:stdio
runtime:npm
Install CiteWire in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"citewire": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "citewire"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs