Rustpad MCP Server for LangChain
io.github.ni-c/rustpad-mcp
MCP server for Rustpad, the self-hosted collaborative text editor
client:LangChain
transport:stdio
runtime:npm
Install Rustpad MCP Server in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"rustpad-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "rustpad-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs