Skip to content
LangChain

Time's up Skybridge example App for LangChain

tech.skybridge.times-up/time-s-up

Skybridge Example App showcasing a Time's up game with the LLM

client:LangChain transport:streamable-http tools:2

Install Time's up Skybridge example App in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "time-s-up": {
            "transport": "streamable_http",
            "url": "https://times-up.skybridge.tech",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Time's up Skybridge example App in other clients