wikisource mcp for LangChain
io.github.mrfentmen/wikisource-mcp
Use this MCP server to searching and reading public-domain texts on Wikisource. Tools include...
client:LangChain
transport:stdio
runtime:npm
Install wikisource mcp in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"wikisource-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "wikisource-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs