Skip to content
LangChain

Superstimulus Quest: Bounded Agent World for LangChain

quest.superstimulus/world

Bounded agent exploration with persistent progress, deterministic receipts, and return contracts.

client:LangChain transport:streamable-http

Install Superstimulus Quest: Bounded Agent World in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "world": {
            "transport": "streamable_http",
            "url": "https://superstimulus.quest/mcp",
        }
})

tools = await client.get_tools()

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

Superstimulus Quest: Bounded Agent World in other clients