Skip to content
LangChain

Knoww for LangChain

io.github.metatxn/knoww

Read-only Polymarket search, market details, order books, price history, and market cards.

client:LangChain transport:streamable-http

Install Knoww in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "knoww": {
            "transport": "streamable_http",
            "url": "https://mcp.knoww.app/mcp",
        }
})

tools = await client.get_tools()

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

Knoww in other clients