MCP Debug Recorder for LangChain
io.github.oaslananka/debug-recorder-mcp
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({
"debug-recorder-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "debug-recorder-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs