MCP Debug Recorder for LangChain
io.github.oaslananka/mcp-debug-recorder
Record debug sessions, commands, failed attempts, and successful fixes in local SQLite storage.
client:LangChain
transport:stdio
runtime:npm
Install MCP Debug Recorder in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"mcp-debug-recorder": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "mcp-debug-recorder"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs