Skip to content
LangChain

januscope for LangChain

io.github.giancarloerra/januscope

Local MCP proxy for tool restrictions, response redaction, audit logs, and database schema context.

client:LangChain transport:stdio runtime:npm

Install januscope in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "januscope": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "januscope"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

januscope in other clients