Skip to content
LangChain

agentforce action audit for LangChain

io.github.jmshinhwa/agentforce-action-audit

13 rules on a Salesforce Agentforce topic file, before the deploy and before Article 50

client:LangChain transport:stdio runtime:npm

Install agentforce action audit in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "agentforce-action-audit": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@readystack/agentforce-action-audit"],
        }
})

tools = await client.get_tools()

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

agentforce action audit in other clients