foxhound for LangChain
io.github.caleb-love/foxhound
MCP server for querying Foxhound traces from Claude Code, Cursor, and other MCP clients
client:LangChain
transport:stdio
runtime:npm
Install foxhound in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"foxhound": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@foxhound-ai/mcp-server"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs