Skip to content
LangChain

prophetkey mcp for LangChain

io.github.lbz558/prophetkey-mcp

ProphetKey MCP bridge - encrypted local-first API key vault for AI agents, keys never exposed

client:LangChain transport:stdio runtime:npm

Install prophetkey mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

prophetkey mcp in other clients