LeonxLJX/dsh-mcp-market0

dsh-mcp-market

The front door to MCP for DeepSeek Harness. Search a verified catalog of MCP servers and get the exact cordis.yml row that wires one into the official @deepseek-ai/dsh-mcp-client bridge — in one step.

AI Analysis

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

Package
dsh-mcp-market
Version
0.1.0
License
MIT
Last updated
Sep 3, 2026

Install

This plugin has no verified bundle, or compatibility checks failed. Read the repository notes first. Read the full 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