Skip to content
LangChain

SEO-Ghost for LangChain

io.github.evozim/seo-ghost

AEO intent and search presence optimization engine.

client:LangChain transport:sse

Install SEO-Ghost in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "seo-ghost": {
            "transport": "streamable_http",
            "url": "https://seo-ghost-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

SEO-Ghost in other clients