DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Postiz — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-postiz

Postiz

DeepSeek Harness plugin that connects the agent to Postiz over MCP: list connected channels, fetch platform posting rules, and schedule, draft, or publish social media posts across 28+ platforms.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-postiz@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Postiz is published as dsh-postiz and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.1.0stable
9/11/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
16 kB
Files
6
Surface
any
License
AGPL-3.0
Source
npm
GitHub
★ 469
Weekly downloads
62
Security scan
✓ v0.1.0 scan passed
Last push
9/16/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rPocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dsh-postiz

npm: dsh-postiz · source: gitroomhq/postiz-agent

DeepSeek Harness (dsh) plugin for Postiz, the open-source social media scheduler. It connects the agent to the Postiz MCP server so it can list your connected channels, fetch each platform's posting rules, and schedule, draft, or publish posts across 28+ platforms (X, LinkedIn, Instagram, Facebook, Threads, TikTok, YouTube, Reddit, Pinterest, Bluesky, Mastodon, Discord, Slack, Telegram, and more).

Install

From the repository:

dsh plugin --profile web add "github:gitroomhq/postiz-agent#path:/plugins/dsh-postiz"

Or from npm:

dsh plugin --profile web add dsh-postiz

Then give it a Postiz API key. Copy it from Postiz → Settings → Developers → Public API and export it before starting dsh, or put it in $DSH_HOME/.env:

export POSTIZ_API_KEY=your-api-key
dsh web

Restart the profile after installing. Ask the agent "List my connected social media accounts" to verify the connection.

What you get

The bundle mounts two rows:

RowPackageRole
postizdsh-postiz (this package)Reads the API key, exposes ctx.postiz (url, headers), and registers the postiz skill that teaches the agent the posting workflow and the HTML content rules.
postiz-mcp@deepseek-ai/dsh-mcp-client (shipped with dsh)Connects to https://mcp.postiz.com/mcp over streamable HTTP with a Bearer header and registers the server's tools.

The model sees the Postiz MCP tools under the mcp__postiz__ namespace:

ToolWhat it does
mcp__postiz__integrationListList connected channels (optionally filtered by group)
mcp__postiz__groupListList customer groups
mcp__postiz__integrationSchemaPosting rules, character limits, and required settings for a platform
mcp__postiz__triggerToolPlatform helpers (list Discord channels, search subreddits, list LinkedIn pages)
mcp__postiz__schedulePostToolSchedule, draft, or immediately publish posts
mcp__postiz__postsListToolList posts scheduled between two dates
mcp__postiz__postSettingsToolUpdate settings of an unpublished post
mcp__postiz__generateImageToolGenerate an image for a post
mcp__postiz__generateVideoOptions / videoFunctionTool / generateVideoToolVideo generation options and generation

The tool list comes from the server at connect time, so new Postiz tools appear without a plugin update. See the Postiz MCP tools reference.

Configuration

Override the postiz row in your profile's cordis.patch.yml ($DSH_HOME/profiles/web/cordis.patch.yml). A bare id: configures the existing row:

- id: postiz
  config:
    apiKeyEnv: POSTIZ_API_KEY          # env var that holds the key (default)
    baseUrl: https://mcp.postiz.com    # self-hosted: https://your-postiz-server.com
    skill: true                        # register the `postiz` workflow skill
FieldDefaultDescription
apiKeyEnvPOSTIZ_API_KEYEnvironment variable read at boot for the API key.
apiKey''Inline key. Prefer the env var; this exists for patch-level overrides.
baseUrlhttps://mcp.postiz.comPostiz host. The MCP endpoint is <baseUrl>/mcp. Self-hosted instances point this at their backend.
skilltrueRegister the postiz skill on ctx.skills.

Without a key the postiz row logs a warning naming the variable to set, and the postiz-mcp row registers no tools. dsh keeps booting.

Self-hosted Postiz

The MCP server is part of the Postiz backend and listens at /mcp (Bearer auth). Point baseUrl at your backend and make sure your reverse proxy forwards /mcp with streaming HTTP enabled. See Reverse Proxies.

Development

cd plugins/dsh-postiz
pnpm install
pnpm test

Link a local checkout into a profile:

dsh plugin --profile web add /absolute/path/to/postiz-agent/plugins/dsh-postiz

Related

  • Postiz CLI — the postiz command-line tool and the Claude Code / Cursor / Grok plugins in this repository.
  • Postiz MCP docs
  • Postiz public API

License

AGPL-3.0, same as the rest of this repository.