Skip to content
LangChain

actually for LangChain

io.github.sofiia7/actually

Matches news to Polymarket markets and returns the market's probability. Optional capped trading.

client:LangChain transport:stdio runtime:npm

Install actually in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

actually in other clients