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 분석
核心用途是简化 MCP(Model Context Protocol)工具的发现与配置过程,提供即插即用的 YAML 片段。适合需要为 Agent 扩展外部工具能力的 DSH 用户。
설치
검증된 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.ymlrow 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