vulcan file ops for LangChain
io.github.n0zer0d4y/vulcan-file-ops
MCP server for AI assistants: read, write, edit, and manage files securely on local filesystem.
client:LangChain
transport:stdio
runtime:npm
Install vulcan file ops in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"vulcan-file-ops": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@n0zer0d4y/vulcan-file-ops"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs