LeonxLJX/dsh-mcp-market0

dsh-mcp-market

DeepSeek Harness 的 MCP 市场入口:搜索验证过的 MCP 服务器并一键获取连接配置。

AI 分析

核心用途是简化 MCP(Model Context Protocol)工具的发现与配置过程,提供即插即用的 YAML 片段。适合需要为 Agent 扩展外部工具能力的 DSH 用户。

包名
dsh-mcp-market
版本
0.1.0
许可证
MIT
最近更新
2026年9月3日

安装

此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 README ↗

Usage

As a harness tool

Once the plugin is loaded, the agent can run mcp_market_search with a free-text query, an optional category, and an optional limit. The result is a ranked list of matching servers, each with:

  • package + pinned version,
  • env keys the server expects,
  • the exact cordis.yml row to copy.

Example (what the agent sees when asked "add a search tool"):

mcp_market_search(query="github")

1. github — GitHub MCP server (@modelcontextprotocol/server-github@2025.4.8)
   env: GITHUB_TOKEN (Personal access token; repo + read:org scopes)
   category: dev
   Wire it in:
   ```yaml
   - id: github
     name: '@deepseek-ai/dsh-mcp-client'
     config:
       serverName: github
       transport: stdio
       command: npx
       args: ['-y', '@modelcontextprotocol/server-github@2025.4.8']
       env:
         GITHUB_TOKEN: !!js process.env.GITHUB_TOKEN
   ```

From the CLI

dsh-mcp-market 

Commands:
  search             Search the catalog
  add  [--out file]     Append a server's cordis.yml row to an overlay file
                            (idempotent — never duplicates). Default out:
                            mcp-servers.cordis.yml
  ls [--category cat]       List all servers (optionally filtered)
  categories                List available categories
$ dsh-mcp-market search postgres