Dse
БесплатноНе проверенDhaka Stock Exchange MCP server - live quotes, price history, fundamentals, market depth, news, technical indicators, screening, and a buy/sell analysis skill.
Описание
Dhaka Stock Exchange MCP server - live quotes, price history, fundamentals, market depth, news, technical indicators, screening, and a buy/sell analysis skill.
README
PyPI Python CI License: MIT MCP
A production-grade Model Context Protocol (MCP) server for the Dhaka Stock
Exchange (DSE) — live quotes, price history, fundamentals, order-book depth,
news, technical indicators, screening — plus a bundled dse-analysis skill
that teaches your agent a disciplined buy/sell workflow on top of those tools.
Data is scraped from dsebd.org (DSE's official site) with
all of its production quirks handled: incomplete TLS chains, -- placeholders,
comma-grouped numbers, invisible layout tables, market-hours-aware caching, and a
mirror-domain fallback. Informational only — not investment advice. Not
affiliated with DSE.
Install
Requires Python 3.12+ (or just uv/pipx, which manage Python for you).
# Register with Claude Code (recommended)
claude mcp add dse -s user -- uvx dse-mcp
Other clients
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"dse": { "command": "uvx", "args": ["dse-mcp"] }
}
}
Cursor (~/.cursor/mcp.json): same JSON shape as Claude Desktop.
pipx:
pipx install dse-mcp
# then register with the command "dse-mcp"
Docker:
docker run -i --rm ghcr.io/ofsazib/dse-mcp
The dse-analysis skill
The repo ships an agent skill that turns these tools into a repeatable buy/sell analysis workflow (market context → fundamentals → technicals → news → verdict with confidence + risks):
# from a git clone of this repo
./scripts/install_skill.sh # installs to ~/.claude, ~/.agents, ~/.zcode
./scripts/install_skill.sh --dir ~/x # add a custom skills directory
./scripts/install_skill.sh --uninstall # remove from all configured directories
Or copy skills/dse-analysis/ into your client's skills directory manually.
Removing everything
claude mcp remove dse # unregister the MCP server (add -s user if needed)
./scripts/install_skill.sh --uninstall # remove the skill from all skill directories
uv cache clean dse-mcp # drop uvx's cached build of the package
Tools (16)
Every response carries market_status (live/closed), data_freshness
(live/snapshot/stale), and data_as_of — so closed-market data is never mistaken
for live prices.
Market
| Tool | Description |
|---|---|
market_status |
Live/closed, session hours, Dhaka time, next session |
market_summary |
DSEX/DS30/DSES + changes, totals for the latest session |
get_index_history(days) |
Daily index history (rolling one-year archive) |
top_movers(category) |
gainers | losers | most_active | turnover |
sector_performance |
Advancing/declining + avg change per sector |
Stock
| Tool | Description |
|---|---|
search_symbols(query) |
Fuzzy search over 636 bundled instruments (22 sectors) |
get_quote(symbol) |
LTP, day range, close, change, trades, value, volume |
get_price_history(symbol, start, end, days) |
Day-end OHLCV, oldest-first |
get_company_profile(symbol) |
Capital structure, listing year, 52w range, EPS block |
get_fundamentals(symbol) |
Analysis-ready: EPS, P/E, dividends, reserves, 52w |
get_market_depth(symbol) |
Live bid/ask levels + session stats |
get_news(symbol, days, limit) |
Company or market-wide news/disclosures |
get_pe_ratios() |
P/E table (interim/audited/trailing) for all instruments |
Analysis & screening
| Tool | Description |
|---|---|
compute_indicators(symbol, ...) |
SMA50/200, RSI(14), MACD, Bollinger |
technical_summary(symbol) |
Trend, support/resistance, outlook + reasons |
screen_stocks(sector, pe_max, price_range, volume_min) |
Filter the live board |
Trading-hours aware caching
- Market live (Sun–Thu 10:00–14:50 Asia/Dhaka): data cached 30s (depth is always fetched fresh).
- Market closed: the last session's snapshot is cached ~1h and persisted to
~/.cache/dse-mcp/, so a restart still serves the last session (labeledsnapshot). - DSE unreachable: the persisted snapshot is served labeled
stale.
Configuration (optional)
All via environment variables with the DSE_MCP_ prefix — see
.env.example. Useful ones:
| Variable | Default | Purpose |
|---|---|---|
DSE_MCP_RATE_LIMIT |
5.0 |
Outbound requests/second (token bucket) |
DSE_MCP_CACHE_TTL_OPEN |
30 |
Seconds, while the market is live |
DSE_MCP_CACHE_DIR |
~/.cache/dse-mcp |
Snapshot persistence |
DSE_MCP_LOG_LEVEL |
WARNING |
Logs go to stderr (never stdout — MCP) |
Troubleshooting
[SSL: CERTIFICATE_VERIFY_FAILED]— dsebd.org serves an incomplete TLS chain. dse-mcp uses the OS trust store (truststore), which handles it; do not replace it withverify=False.- Empty depth / quotes look frozen — the market is closed (or a holiday).
Check
market_statusand the response'sdata_as_of. DGEN: null— the DGEN index is retired from DSE's live pages; null is the honest value.
Development
git clone https://github.com/ofsazib/dse-mcp && cd dse-mcp
uv sync # Python 3.12 via uv
uv run pytest # 44 offline tests (recorded fixtures)
uv run ruff check .
uv run dse-mcp # run the server locally
npx @modelcontextprotocol/inspector uv run dse-mcp # visual debugging
Re-record fixtures when dsebd.org markup changes: uv run python scripts/record_fixtures.py.
Rebuild the instrument bundle: uv run python scripts/build_instruments.py.
See AGENTS.md for architecture and CONTRIBUTING.md
to contribute.
Legal
- Data source: dsebd.org (Dhaka Stock Exchange). This project is an independent, unaffiliated open-source client; data remains the property of DSE.
- Nothing here is investment advice. DSE securities can be illiquid and subject to circuit breakers; verify everything against primary sources before acting.
License
MIT © Omar Faruk Sazib
Установить Dse в Claude Desktop, Claude Code, Cursor
unyly install dseСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add dse -- uvx dse-mcpПошаговые гайды: как установить Dse
FAQ
Dse MCP бесплатный?
Да, Dse MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Dse?
Нет, Dse работает без API-ключей и переменных окружения.
Dse — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Dse в Claude Desktop, Claude Code или Cursor?
Открой Dse на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Stripe
Payments, customers, subscriptions
автор: Stripemalamutemayhem/unclick-agent-native-endpoints
110+ tools for AI agents spanning social media, finance, gaming, music, AU-specific services, and utilities. Zero-config local tools plus platform connectors. n
автор: malamutemayhemwhiteknightonhorse/APIbase
Unified API hub for AI agents with 56+ tools across travel (Amadeus, Sabre), prediction markets (Polymarket), crypto, and weather. Pay-per-call via x402 micropa
автор: whiteknightonhorsetrackerfitness729-jpg/sitelauncher-mcp-server
Deploy live HTTPS websites in seconds. Instant subdomains ($1 USDC) or custom .xyz domains ($10 USDC) on Base chain. Templates for crypto tokens and AI agent pr
embeddedlayers/mcp-analytics
Statistical analysis, forecasting, and ML for business data (Shopify, Stripe, WooCommerce, eBay, GA4, Search Console). Upload a CSV or connect live data sources
автор: embeddedlayerscarrierone/verilexdata-mcp
20 structured datasets (NPI healthcare, SEC filings, OFAC sanctions, crypto whales, Polymarket signals, patents, economic indicators) via x402 pay-per-query wit
автор: carrieronetipdotmd/tip-md-x402-mcp-server
MCP server for cryptocurrency tipping through AI interfaces using x402 payment protocol and CDP Wallet.
автор: tipdotmdlaundromatic/shopgraph
Structured product data from the open web — Schema.org + AI extraction for e-commerce enrichment. Pay per call via Stripe. [shopgraph.dev](https://shopgraph.dev
автор: laundromaticmrslbt/xendit-mcp
Xendit payment gateway for Southeast Asia. Invoices, disbursements, balance checks, and bank transfers across Indonesia, Philippines, Thailand, Vietnam, and Mal
автор: mrslbt@arbitova/mcp-server
Non-custodial on-chain escrow + AI dispute arbitration for agent-to-agent USDC payments on Base. Seven tools covering the full EscrowV1 contract surface: create
автор: jiayuanliang0716-maxCompare Dse with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории finance
