Skip to content
LangChain

APIThreshold for LangChain

ai.apithreshold/apithreshold

Quality scoring and progressive gates for AI-generated API tests. Stripe/Twilio profiles. Free tier.

client:LangChain transport:stdio runtime:oci

Install APIThreshold in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "apithreshold": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/apithreshold/apithreshold:0.1.0"],
        }
})

tools = await client.get_tools()

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

APIThreshold in other clients