Skip to content
LangChain

Discourse Forum Scraper — Topics & Posts for LangChain

com.ranovam/discourse-forum-scraper

Scrape any public Discourse forum: topic titles, authors, reply counts, views and canonical URLs…

client:LangChain transport:streamable-http

Install Discourse Forum Scraper — Topics & Posts in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "discourse-forum-scraper": {
            "transport": "streamable_http",
            "url": "https://mcp.apify.com?tools=enezli/discourse-forum-scraper",
        }
})

tools = await client.get_tools()

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

Discourse Forum Scraper — Topics & Posts in other clients