anht3889/dsh-mcp-management--packages-mcp-oauth1

@anht3889/dsh-mcp-mgmt-oauth

OAuth PKCE and discovery helpers for managed MCP HTTP servers

AI 분석

核心用途是为托管的 MCP HTTP 服务器提供 OAuth 认证和发现支持。适合需要安全连接和授权外部 MCP 服务的开发与部署任务。

패키지
@anht3889/dsh-mcp-mgmt-oauth
버전
0.0.1
최근 업데이트
2026. 8. 19.

설치

검증된 bundle이 없거나 호환성 검사에 실패했습니다. 먼저 저장소 설명을 읽어 주세요. 전체 README 읽기 ↗

dsh-mcp-management

Out-of-tree MCP connection management for DeepSeek Harness. Architecture and scope live in docs/design.md.

Install

From npm (after the packages are published):

npx @deepseek-ai/dsh plugin --profile web add @anht3889/dsh-mcp-mgmt-bundle@0.0.3

From a local checkout (development):

pnpm install && pnpm run build
npx @deepseek-ai/dsh plugin --profile web add ./packages/bundle

Restart the Web profile after installation.

Do not also mount @deepseek-ai/dsh-mcp-client for the same serverName — both register MCP tools and will conflict.

Settings UI

Add a server. Open Settings → MCP Servers and choose Add server. Fill in the name, transport (stdio or HTTP), command or URL, and authentication, then Save. Timeout and reconnect options live under Advanced settings.

Add MCP server

Server list. Each row shows the server name, an Enabled switch, and a summary of transport, connection state, and how many tools are enabled. Authorize appears only while an OAuth server has no token. Click the row to open details.

MCP Servers list

Server details. Toggle the server or individual tools, Reload to reconnect and re-list tools, open Connection logs, or use Edit configuration, Log out, and Delete. Disabling a tool unregisters it without dropping the connection; the choice is stored in the server record and survives a restart.

MCP server details

Storage

DataDefault path
Non-secret server records, including disabled tool names~/.dsh/mcp/servers.json
Secrets (tokens, header values, client secret)~/.dsh/mcp/secrets.yaml, or ctx.credentials when mounted

Override with the manager plugin's catalogPath / secretsPath config.

OAuth

Each server's callback URL is the live web origin plus that server's auth.redirectPath (default /callback). Set publicOrigin on the manager when the browser reaches the host through a different origin. Authorization servers match the redirect URI exactly; a pre-registered public client usually allows /callback on any loopback port. The manager serves every configured path. Authorize and token requests also send the MCP URL as the RFC 8707 resource indicator.

Packages

PackageRole
@anht3889/dsh-mcp-mgmt-bundleInstallable surface: patch, manager, Settings UI
@anht3889/dsh-mcp-mgmt-mcpctx.mcp vocabulary (library)
@anht3889/dsh-mcp-mgmt-oauthPKCE OAuth + discovery (library)