DSH Plugins Marketplace

DSH Plugins

Plugins

/

dsh-oomol

o

dsh-oomol

Manifest valid13

OOMOL Connector for DeepSeek Harness—discover connected apps and execute Actions through progressive MCP discovery without exposing provider credentials.

UI (client)hasBundlePatch

OOMOL Connector for DeepSeek Harness

Use OOMOL Connector Actions from DeepSeek Harness through progressive MCP discovery.

dsh-oomol supports OOMOL Hosted and self-hosted OpenConnector. One plugin instance connects to one Connector endpoint.

npm package | 中文文档

Requirements

  • Node.js 22.19 or later within Node.js 22, or Node.js 24+
  • DeepSeek Harness 0.1.0-rc.7 or 0.1.0-rc.8
  • An OOMOL account for OOMOL Hosted, or a running OpenConnector instance for self-hosted use

Install

Install the plugin into the Web profile and restart Harness:

dsh plugin --profile web add -w dsh-oomol
dsh web

The plugin appears under Settings > Plugins > OOMOL Connector.

OOMOL Hosted

The package connects to OOMOL Hosted by default:

- id: oomol
  name: dsh-oomol
  config:
    endpoint: https://connector.oomol.com/v1/mcp
    teamNameEnv: OOMOL_TEAM_NAME
    serverName: oomol
    toolCallTimeoutMs: 60000
    failOnStartupError: false

Create an OOMOL MCP API key in OOMOL Console, then save it in the plugin settings. Harness Credentials stores the key under OOMOL_MCP_API_KEY.

Managed environments can provide it at launch:

export OOMOL_MCP_API_KEY="api_..."
dsh web

Set a team identity when needed:

export OOMOL_TEAM_NAME="your-team"
dsh web

The Connections button opens the native Harness panel for OOMOL Hosted accounts.

Self-hosted OpenConnector

Override the endpoint in the profile's cordis.patch.yml:

- update:
    id: oomol
    config:
      endpoint: http://127.0.0.1:3000/mcp

The plugin recognizes every non-official endpoint as self-hosted. Local OpenConnector deployments can run without authentication. Deployments with runtime authentication use the key stored under OOMOL_CONNECT_RUNTIME_TOKEN:

export OOMOL_CONNECT_RUNTIME_TOKEN="oct_..."
dsh web

You can also save the runtime API key in the plugin settings. Create persistent runtime keys in the OpenConnector Console Access page.

Self-hosted HTTP endpoints are limited to localhost, 127.0.0.1, and [::1]. Remote deployments use HTTPS:

- update:
    id: oomol
    config:
      endpoint: https://connect.example.com/mcp

The Connections button opens the endpoint origin, such as https://connect.example.com, where OpenConnector serves its Console.

Custom API key environment name

Both modes support an explicit credential reference:

- update:
    id: oomol
    config:
      endpoint: https://connect.example.com/mcp
      apiKeyEnv: MY_CONNECT_RUNTIME_TOKEN

Harness Credentials resolves apiKeyEnv first and the launch environment second.

Use Connector Actions

Start with discovery:

Show me the connectors available to this account.
Find Actions that can create a calendar event and inspect the selected Action schema.

For operations with external effects, include the target account and proposed arguments in your request before execution.

How it works

The plugin mounts DeepSeek Harness's Streamable HTTP MCP client with the selected Connector endpoint. Connector Actions remain progressively discoverable, keeping the permanent Harness tool surface small.

OOMOL Hosted stores Provider credentials in OOMOL Connector. Self-hosted deployments store them in OpenConnector. Harness stores only the Connector client key selected by apiKeyEnv.

The browser receives the credential reference and status metadata. Connector API keys and Provider credentials stay in Host-side secret boundaries.

See Architecture for implementation details.

Configuration

| Field | Default | Purpose | | --- | --- | --- | | endpoint | https://connector.oomol.com/v1/mcp | Streamable HTTP MCP endpoint | | apiKeyEnv | Derived from endpoint | Harness credential reference and launch environment name | | teamName | unset | OOMOL Hosted team identity | | teamNameEnv | OOMOL_TEAM_NAME | OOMOL Hosted team environment name | | serverName | oomol | Harness MCP tool namespace | | toolCallTimeoutMs | 60000 | Tool call timeout | | failOnStartupError | false | Fail Harness startup when MCP discovery fails |

Derived credential references:

| Endpoint mode | Default reference | Required | | --- | --- | --- | | OOMOL Hosted | OOMOL_MCP_API_KEY | Yes | | Self-hosted | OOMOL_CONNECT_RUNTIME_TOKEN | Depends on the OpenConnector deployment |

Troubleshooting

| Symptom | Action | | --- | --- | | Plugin missing from Settings | Install it in the web profile and restart dsh web | | OOMOL Hosted shows Not configured | Save an OOMOL MCP API key in plugin settings | | Self-hosted returns Unauthorized | Save a runtime API key created by that OpenConnector instance | | Self-hosted Console link returns 404 | Open the Console URL configured by the OpenConnector deployment | | Expected app is missing | Open the relevant Connector Console and configure the Provider connection | | Connections panel stays closed | Widen the window to at least 1220 px so Harness can show its details column |

Run local diagnostics:

pnpm run doctor

Security

  • Store Connector API keys in Harness Credentials or the launch environment.
  • Use HTTPS for remote self-hosted endpoints.
  • Review destructive, externally visible, permission-changing, and broad-sharing Actions before execution.
  • Treat an ambiguous side-effecting call as an unknown outcome and inspect the Provider before retrying.
  • Report vulnerabilities through SECURITY.md.

Development

pnpm install --frozen-lockfile
pnpm check

Build and install the checkout into a Web profile:

pnpm build
dsh plugin --profile web add -w "$(pwd)"

License: MIT

Compatibility

DSH 0.1.5-rc.2: failedDSH 0.1.5-rc.1: errorDSH 0.1.5-alpha.2: errorDSH 0.1.5-alpha.1: errorDSH 0.1.3-alpha.2: errorDSH 0.1.2-rc.1: errorDSH 0.1.2-alpha.5: errorDSH 0.1.2-alpha.4: errorDSH 0.1.2-alpha.3: errorDSH 0.1.2-alpha.2: error

Versions

Latest versionPublishedSize
0.1.0
0.1.1
0.1.2
0.1.3
0.1.4

Similar plugins

dsh-plugin-mcp

by menotbobbybrown

Universal Model Context Protocol (MCP) Bridge Plugin for DeepSeek Harness (dsh) — Everything is a Plugin

Manifest valid

3

24/wk

MIT

TypeScript

Sep 8, 2026

dsh plugin --profile web add dsh-plugin-mcp

by 2nd1st

Bring open-mcp-apps into deepseek-harness: apps as sidebar containers with their own sessions, an agent status strip, and inline widget rendering

UI & ExperienceManifest valid

7

MIT

JavaScript

Aug 15, 2026

dsh plugin --profile web add @2nd1st/dsh-plugin-open-app

by labmimors

Search 1,000 MCP tools through two interfaces in DeepSeek Harness. Load exact schemas on demand and keep structured results usable across tool calls.

Development & InfrastructureManifest valid

9

MIT

TypeScript

Sep 11, 2026

dsh plugin --profile web add dsh-mcp-lens

by bobleer

MCP server that lets any agent discover, install, and run DeepSeek Harness plugins (topic: dsh-plugin).

Manifest valid

3

MIT

TypeScript

Aug 13, 2026

dsh plugin --profile web add deepseek-harness-plugin-mcp

by agi-fans

A focused, keyboard-first DeepSeek coding agent built on the plugin architecture of DeepSeek Harness and inspired by the interaction quality of oh-my-pi.

Development & InfrastructureTerminal & ClientsManifest valid

31

MIT

TypeScript

Sep 12, 2026

dsh plugin --profile web add @agi-fans/oh-my-dsh

by fly233338

Connect Overleaf projects to DeepSeek Harness (DSH) through OverleafMCP and MCP tools.

Tools & CapabilitiesDevelopment & InfrastructureManifest valid

12

MIT

JavaScript

Aug 22, 2026

dsh plugin --profile web add dsh-overleaf