Skip to content
LangChain

App Listing Agent for LangChain

com.applistingagent/applistingagent

AI-agent operations for App Store Connect and Google Play, with approval before live publishing.

client:LangChain transport:streamable-http

Install App Listing Agent in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "applistingagent": {
            "transport": "streamable_http",
            "url": "https://applistingagent.com/api/mcp",
        }
})

tools = await client.get_tools()

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

App Listing Agent in other clients