Skip to content
LangChain

Shipshots for LangChain

io.github.gurkang/shipshots

Create App Store and Play Store screenshots with AI via MCP

client:LangChain transport:stdio runtime:npm

Install Shipshots in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Shipshots in other clients