ace context mcp for LangChain
io.github.dw-dwain/ace-context-mcp
Local-first memory for AI chats: save context in one chat, load it in any other via MCP.
client:LangChain
transport:stdio
runtime:npm
Install ace context mcp in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"ace-context-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "ace-context-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs