Skip to content
LangChain

Shipcheck MCP for LangChain

io.github.tatelyman/shipcheck-mcp

Read-only Shipcheck launch-risk scans for authorized JS, TS, and MCP repos.

client:LangChain transport:stdio runtime:npm

Install Shipcheck MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Shipcheck MCP in other clients