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.

Web Search Zhipu — DSH Plugin for DeepSeek Harness
← Plugins
W

dsh-web-search-zhipu

Web Search Zhipu

Zhipu Web Search API search provider for the DeepSeek Harness web seam (ctx.web).

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Erin-R-phone/dsh-web-search-zhipu#0a4c67b4bc8eca350ce99a7dd09ddf3ea8b04026
READMECompatibilityVersions

Compatibility and provenance

Web Search Zhipu is published as dsh-web-search-zhipu 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
github
Registry updated
9/5/2026

Versions

0.1.0stable
9/5/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/5/2026
View source ↗
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in search-research.

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-pluginDeepSeek Harness tool plugin that exposes BrowserSkill browser automation (browser_* tools) to the modelWeknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Free Searchdsh-free-searchFree web search for DeepSeek Harness: 13 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl keyless; Parallel/Perplexity/SerpBase/DeepSeek with key) + time filtering + platform search + web_fetch, with web settings UI.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

README

dsh-web-search-zhipu

Zhipu Web Search API search provider for the DeepSeek Harness web seam (ctx.web).

Description

This plugin provides a web search provider for DeepSeek Harness that uses Zhipu AI's Web Search API. It allows the system to perform web searches using Zhipu's search capabilities.

Features

  • Direct integration with Zhipu Web Search API
  • Configurable search engine, result count, and recency filters
  • Secure API key management through DeepSeek credentials service
  • Proper error handling and abort support

Installation

npm install @deepseek-ai/dsh-web-search-zhipu

Usage

import { apply } from '@deepseek-ai/dsh-web-search-zhipu';

// Register the provider
apply(ctx, {
  apiKey: 'your-zhipu-api-key',
  baseURL: 'https://open.bigmodel.cn/api/paas/v4'
});

Configuration

The plugin supports the following configuration options:

  • apiKey: Your Zhipu API key (string)
  • apiKeyEnv: Environment variable name for API key (string, default: "OPEN_BIGMODEL_CN_API_KEY")
  • baseURL: Zhipu API base URL (string, default: "https://open.bigmodel.cn/api/paas/v4")
  • searchEngine: Search engine type (string, default: "search_std")
  • count: Number of results (number, default: 10)
  • recency: Recency filter (string, default: "noLimit")

API Key Setup

You can set up your Zhipu API key in several ways:

  1. Directly in config:

    apply(ctx, {
      apiKey: 'your-api-key-here'
    });
    
  2. Through environment variable:

    apply(ctx, {
      apiKeyEnv: 'ZHIPU_API_KEY'
    });
    
  3. Through DeepSeek credentials service:

    apply(ctx, {
      apiKeyEnv: 'OPEN_BIGMODEL_CN_API_KEY'
    });
    

Search Engines

Available search engines:

  • search_std: Standard search engine (default)
  • search_news: News search
  • search_academic: Academic search
  • search_webpage: Webpage search

Examples

Basic Usage

import { apply } from '@deepseek-ai/dsh-web-search-zhipu';

apply(ctx, {
  apiKey: 'your-api-key',
  searchEngine: 'search_std',
  count: 10,
  recency: 'noLimit'
});

Advanced Configuration

import { apply } from '@deepseek-ai/dsh-web-search-zhipu';

apply(ctx, {
  apiKey: 'your-api-key',
  baseURL: 'https://open.bigmodel.cn/api/paas/v4',
  searchEngine: 'search_news',
  count: 20,
  recency: 'lastMonth'
});

License

MIT License

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

Support

For issues and questions, please open an issue on the GitHub repository.