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.

Finance Db — DSH Plugin for DeepSeek Harness
← Plugins
F

dsh-finance-db

Finance Db

Read-only market quotes, OHLCV history, fundamentals, news, search, and health checks for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:zhiyaoli0221/dsh-finance-db#d9cc83c80c9852a38ab652fa795ad23723d2c7be
READMECompatibilityVersions

Compatibility and provenance

Finance Db is published as dsh-finance-db 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
8/22/2026

Versions

0.1.0stable
8/22/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
★ 2
Weekly downloads
0
Last push
8/22/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-finance-db

Read-only market data for DeepSeek Harness. Ask about a stock, and let DSH call the data tools directly.

English · 简体中文

dsh-finance-db brings practical finance data tools into DeepSeek Harness: live quotes, historical prices, basic fundamentals, news, stock search, and market health checks.

It is designed for analysis workflows—not trading. The plugin never places orders, moves money, stores broker credentials, or mutates a portfolio.

See it in action

Ask naturally:

Get the current quote for 600519. Use finance_quote only and do not browse the web.

The model calls the host-side tool and receives structured data from the original upstream provider:

Example: DSH calling finance_quote for 600519

Why this plugin?

  • Native DSH tools — the model can call finance functions instead of parsing pages or scraping rendered HTML.
  • Direct upstream APIs — A-share and Hong Kong data use EastMoney endpoints; US market data uses Yahoo Finance chart endpoints.
  • Read-only by design — no broker integration, trading action, credential storage, or account access.
  • Structured results — quotes, OHLCV rows, fundamentals, news items, and health status are returned as JSON.
  • Small and composable — in-memory caching, provider errors, and no required database service for the first release.
  • Bilingual documentation — this page is the default English entry point; see 简体中文.

Available tools

ToolWhat it doesCurrent coverage
finance_quoteCurrent price, change, volume, PE, and timestampA-share, HK, US
finance_ohlcvHistorical open/high/low/close/volume dataA-share, HK, US
finance_fundamentalsQuote-linked valuation fields and provider metadataA-share, HK, US
finance_newsRecent finance headlines from NewsNowNewsNow feeds
finance_search_stocksFind a ticker by code or nameA-share, HK, US
finance_market_overviewMajor indices and daily changesEastMoney indices
finance_healthCheck provider availabilityEastMoney, Yahoo Finance, NewsNow
finance_sentimentSentiment entry pointRequires a mounted local/agent provider

The tool names are intentionally explicit, so prompts can be precise when needed:

Call finance_ohlcv for AAPL over 1 year and summarize the price range.
Call finance_news for 600519 and list the five newest headlines.
Run finance_health before using market data.

More use cases

1. Quote lookup

What is the latest quote for 600519? Include the market, provider timestamp, price, change, and volume.

2. Historical context

Get 1-year OHLCV data for AAPL and summarize the highest close, lowest close, and recent direction.

3. Stock discovery

Search for Hong Kong-listed companies matching "Tencent" and return the ticker and company name.

4. News-assisted research

Fetch the latest finance news for 600519. Separate headlines from the data returned by finance_quote.

5. Provider diagnosis

Run finance_health. If a provider is unavailable, explain which data tools may be affected.

Install in DSH

From npm

npx @deepseek-ai/dsh plugin --profile web add dsh-finance-db
npx @deepseek-ai/dsh web

From a local checkout

git clone https://github.com/zhiyaoli0221/dsh-finance-db.git
cd dsh-finance-db
npm install
npm run verify
npx @deepseek-ai/dsh plugin --profile web add "$PWD"
npx @deepseek-ai/dsh web

If DSH is already running, restart the web process after reinstalling the local plugin so it reloads the compiled lib/ files.

Providers and configuration

The plugin calls the original upstream providers directly. It does not call a DeepEar/Vercel proxy.

CapabilityProviderConfiguration
A-share / HK quote and historyEastMoneyNo key required
US quote and historyYahoo Finance chart endpointNo key required
HeadlinesNewsNowNo key required
Optional web searchJina SearchSet JINA_API_KEY

Requests are cached in memory for short, capability-specific TTLs. A cache hit does not make a fresh upstream request; use finance_health when diagnosing connectivity.

Development

npm install
npm run verify       # build, tests, and package dry-run
npm run dev          # watch TypeScript output

The plugin is host-side and mounts through cordis.patch.yml; it does not require a browser bundle or UI injection.

Scope and roadmap

This first release focuses on dependable read-only market-data plumbing. The source project also contains local workflows for sentiment, Kronos prediction, signal tracking, logic-chain visualization, reporting, and local search. Those workflows are not remote APIs, so they remain provider-mounted or agent-side extensions rather than pretending to be available through this package.

That boundary keeps failures explicit: a missing provider returns a clear provider error instead of fabricated data.

Disclaimer

This plugin provides data for research and automation workflows. It is not investment, tax, accounting, or legal advice. Upstream coverage, freshness, rate limits, and availability can change.

License

MIT. See LICENSE.