Skip to content
LangChain

dsh cert for LangChain

io.github.perrylink/dsh-cert

Read-only MCP server exposing the dsh-plugin-certification registry for DeepSeek Harness plugins.

client:LangChain transport:stdio runtime:npm

Install dsh cert in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

dsh cert in other clients