reactive-resume
reactive-resume
A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!
PROJECT TOPICS
INSTALL REFERENCE
dsh plugin --profile web add github:menotbobbybrown/dsh-plugin-mcp
该命令指向仓库当前默认分支;尚无绑定当前 commit 的完整验证结果。
PROJECT README
Universal Model Context Protocol (MCP) Bridge Plugin for DeepSeek Harness (
dsh)
dsh-plugin-mcp is an official-standard plugin for DeepSeek Harness that seamlessly connects your DeepSeek agents to the entire ecosystem of Model Context Protocol (MCP) servers with full Claude Code-level feature parity.
See our complete ROADMAP.md for current features and upcoming milestones.
stdio, sse, or websocket.tools/list handshake delay on boots.~/.dsh/mcp.json), project local (.dsh/mcp.json), and profile-level configurations.allow, ask, and deny permission rules for tool safety.github_create_issue, postgres_query) to avoid name collisions across servers.ctx.provide, ctx.on('ready'), ctx.on('dispose')).Launch DeepSeek Harness + MCP bridge + PostgreSQL + Filesystem with 1 command:
# Clone and boot the complete stack
git clone https://github.com/menotbobbybrown/dsh-plugin-mcp.git
cd dsh-plugin-mcp
# On Linux/macOS:
./scripts/quickstart.sh
# On Windows PowerShell:
.\scripts\quickstart.ps1
dsh)# Add from GitHub
dsh plugin --profile web add "github:menotbobbybrown/dsh-plugin-mcp"
# Or install via npm
dsh plugin --profile web add dsh-plugin-mcp
dsh-mcp)Manage MCP servers seamlessly from the terminal just like Claude Code:
# Browse verified built-in server catalog
npx dsh-mcp catalog
# 1-Click install popular servers (GitHub, Postgres, SQLite, Brave Search, etc.)
npx dsh-mcp install github --scope user
npx dsh-mcp install postgres --scope project
npx dsh-mcp install sqlite --scope project
# List all configured MCP servers and their active scopes
npx dsh-mcp list
# Add a custom user-global MCP server (~/.dsh/mcp.json)
npx dsh-mcp add custom_srv --scope user -- npx -y my-mcp-server
# Add a project-local MCP server (.dsh/mcp.json)
npx dsh-mcp add postgres --scope project -- npx -y @modelcontextprotocol/server-postgres postgresql://localhost:5432/mydb
# Add an SSE remote MCP server
npx dsh-mcp add weather --transport sse -- https://weather-mcp.example.com/sse
# Test connection, latency, and tool discovery
npx dsh-mcp test github
# Remove an MCP server from configuration
npx dsh-mcp remove github --scope user
Add the plugin to your dsh.config.yaml:
plugins:
mcp:
prefixToolNames: true
prefixDelimiter: "_"
defaultTimeoutMs: 60000
servers:
# GitHub MCP Server
github:
type: stdio
command: npx
args: ["-y", "@modelcontextprotocol/server-github"]
env:
GITHUB_PERSONAL_ACCESS_TOKEN: "${GITHUB_TOKEN}"
# Local Filesystem MCP Server
filesystem:
type: stdio
command: npx
args: ["-y", "@modelcontextprotocol/server-filesystem", "./workspace"]
# PostgreSQL Database MCP Server
postgres:
type: stdio
command: npx
args: ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost:5432/mydb"]
# Remote MCP Server via SSE
remote_service:
type: sse
url: "https://mcp.example.com/sse"
headers:
Authorization: "Bearer ${API_KEY}"
import { Context } from 'cordis';
import * as McpPlugin from 'dsh-plugin-mcp';
const ctx = new Context();
ctx.plugin(McpPlugin, {
servers: {
github: {
command: 'npx',
args: ['-y', '@modelcontextprotocol/server-github'],
},
},
});
// Access registered MCP tools & services
const tools = await ctx.mcp.getAllTools();
const statuses = ctx.mcp.getStatuses();
# Install dependencies
npm install
# Run unit tests
npm test
# Build package
npm run build
MIT © DeepSeek Harness Community
Contributions are warmly welcome! Whether you are reporting an issue, proposing an adapter, optimizing performance, or fixing a bug, please check out our Contributing Guide.
git checkout -b feat/AmazingFeature)git commit -m 'feat: add some AmazingFeature')git push origin feat/AmazingFeature)Distributed under the MIT License. See LICENSE for more information.
Built with 💙 for the DeepSeek Harness community.
CLASSIFICATION EVIDENCE
系统优先读取 GitHub Topics,再与站内分类词典和词根规则比对。当前命中: mcp、model-context-protocol。