sahmk-mcp
This MCP server provides tools to access and analyze Saudi stock market (Tadawul/TASI and NOMU) data, enabling AI agents to query real-time and historical market information.
Real-time stock quotes: Retrieve a snapshot for one (
get_quote) or multiple stocks up to 50 (get_quotes) using symbols, Arabic/English names, or aliases.Market summary (
get_market_summary): Get the current index level, change, direction, and advancing/declining counts for TASI or NOMU.Market movers (
get_market_movers): View top gainers, losers, volume leaders, or value leaders (up to 50 results).Sector performance (
get_sectors): View a performance snapshot across all market sectors.Company profile (
get_company): Access a company's profile, sector, industry, fundamentals, valuation, technical indicators, and analyst consensus.Financial statements (
get_financials): Retrieve income statement, balance sheet, and cash flow data (Starter+ plan required).Financial ratios (
get_ratios): Get calculated financial ratios; extended history and metrics available on Pro.Compare companies (
compare_symbols): Normalize and compare financial ratios/metrics across multiple companies (up to 3 on Starter, up to 10 on Pro).Dividend history (
get_dividends): Retrieve dividend history and yield data (Starter+ plan required).Historical OHLCV data (
get_historical): Fetch price data with daily, weekly, monthly, or intraday (30m/60m) intervals.Company discovery (
companies_list): Search and paginate the company directory by name, symbol, or market to find and validate symbols.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sahmk-mcpwhat's the current price of Saudi Aramco?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SAHMK MCP Server
Official distribution: GitHub (
sahmk-sa/sahmk-mcp) and PyPI (sahmk-mcp) only. Do not install from third-party forks.
Official SAHMK MCP server for SAHMK — use Saudi market data inside AI agents such as Cursor and Claude Desktop.
This MCP exposes a curated set of Sahmk tools for AI agents, so assistants can query the Saudi market in natural language.
Tools
Tool | Use it for |
| Snapshot for one stock identifier (symbol, name, or alias) |
| Compare multiple stock identifiers in one call |
| Company directory/symbol discovery with pagination |
| Summary for |
| Top movers by |
| Sector performance snapshot |
| Company profile and fundamentals |
| Financial statements (Starter+ plan) |
| Calculated financial ratios (Starter/Pro features vary) |
| Multi-symbol normalized ratio/metrics comparison (Starter/Pro limits vary) |
| Dividend history and yield data (Starter+ plan) |
| Historical OHLCV data |
Related MCP server: Bitget MCP Server
Identifier-First Contract
Canonical inputs for quote tools are
identifierandidentifiers.Legacy aliases
symbolandsymbolsare still accepted for compatibility.Prefer canonical keys in prompts, tool calls, and client templates.
Resolution is backend/SDK-backed (names, aliases, and symbols); MCP does not maintain its own symbol map.
When to Use MCP vs SDK
Use MCP for interactive agent workflows in tools like Cursor and Claude Desktop.
Use the Python SDK for scripts, automation, dashboards, alerts, backtests, and application code.
SDK repo: sahmk-sa/sahmk-python
Get Your API Key
Sign up at sahmk.sa/developers
Go to Dashboard → API Keys → Create Key
Copy your key (starts with
shmk_live_orshmk_test_)
Required Environment Variable
SAHMK_API_KEY is required for all server runs (Claude Desktop, Cursor, and direct CLI usage).
Set it in your MCP client env config or export it before running sahmk-mcp.
Installation
pip install sahmk-mcpRequires sahmk>=0.11.0 for current MCP-SDK compatibility, including expanded historical intervals (30m/60m).
Security
Set API keys via environment variables (
SAHMK_API_KEY).Never commit keys to source control or share them in logs.
Rotate exposed keys immediately from your Sahmk dashboard.
Configuration
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"sahmk": {
"command": "sahmk-mcp",
"env": {
"SAHMK_API_KEY": "your_api_key"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"sahmk": {
"command": "sahmk-mcp",
"env": {
"SAHMK_API_KEY": "your_api_key"
}
}
}
}Run Directly
export SAHMK_API_KEY="your_api_key"
sahmk-mcpTool Input Constraints
get_market_summary.index:TASIorNOMU(NOMUCalias is accepted and normalized).get_market_movers.type:gainers,losers,volume, orvalue.get_market_movers.limit: integer from 1 to 50.get_quote.identifier(preferred): accepts numeric symbol, Arabic/English company name, or known alias.get_quote.symbol(legacy alias): accepted for backward compatibility.get_quotes.identifiers(preferred): maximum 50 identifiers per request.get_quotes.symbols(legacy alias): accepted for backward compatibility.get_financials.symbol: prefers exact exchange symbol; MCP attempts SDK-backed identifier resolution for names/aliases when possible.get_financials.periodandget_financials.statement_period: if both are provided,periodtakes precedence.get_financialssupports optional passthrough params:type,period,statement_period,history,metrics,result, andinclude_partial.get_financialsresponse is statement-block focused and does not includemeta.get_ratios.symbol: prefers exact exchange symbol; MCP attempts SDK-backed identifier resolution for names/aliases when possible.get_ratios.history: defaults tolatest.get_ratios.period: defaults toannual.get_ratios.metrics: defaults tocore.compare_symbols.symbols: list of symbols (preferred) or comma-separated string; MCP attempts SDK-backed identifier resolution for names/aliases when possible.compare_symbols.metrics: defaults tocore.get_ratiosandcompare_symbolsinclude minimalmetaonly:period,metrics,warnings.Analytics tools do not expose backend/internal fields such as
applied_profile,plan, or source diagnostics.get_dividends.symbol: prefers exact exchange symbol; MCP attempts SDK-backed identifier resolution for names/aliases when possible.get_historical.symbol: prefers exact exchange symbol; MCP attempts SDK-backed identifier resolution for names/aliases when possible.companies_list.market:TASIorNOMU(NOMUCalias is accepted and normalized).companies_list.limit: integer greater than 0.companies_list.offset: integer greater than or equal to 0.get_historical.interval:1d,1w,1m,30m, or60m.Ambiguous identifiers raise
AMBIGUOUS_IDENTIFIERwith retry guidance and candidates when available.Invalid identifiers and plan-gated requests return the underlying API error.
Tool Call Examples
Company directory search:
companies_list(search="aramco")Company directory by market alias normalization:
companies_list(search="acwa", market="NOMUC")Company directory pagination:
companies_list(search="bank", limit=50, offset=100)Preferred single quote call:
get_quote(identifier="أرامكو")Legacy single quote call:
get_quote(symbol="2222")Preferred batch quote call:
get_quotes(identifiers=["سبكيم", "كيان"])Legacy batch quote call:
get_quotes(symbols=["2222", "1120"])Financials by exact symbol:
get_financials(symbol="1120")Financial ratios defaults:
get_ratios(symbol="1120")Financial ratios advanced:
get_ratios(symbol="1120", history="5y", period="quarterly", metrics="extended")Compare symbols defaults:
compare_symbols(symbols=["1120", "1180", "1010"])Compare symbols extended:
compare_symbols(symbols=["1120", "1180", "1010", "2222"], metrics="extended")Dividends by exact symbol:
get_dividends(symbol="1120")Historical by exact symbol:
get_historical(symbol="1120", interval="1d")Historical with explicit daily date range args:
get_historical(symbol="1120", from_date="2026-01-01", to_date="2026-03-31", interval="1d")Intraday historical by exact symbol (plan-gated by API key):
get_historical(symbol="1120", interval="60m")Intraday historical with explicit date range args:
get_historical(symbol="1120", from_date="2026-05-01", to_date="2026-05-31", interval="60m")
Company Directory / Symbol Discovery
Use companies_list first to reduce invalid-symbol 404s before symbol-only tools.
Discover candidates by name or symbol fragment:
companies_list(search="aramco")companies_list(search="2222")
Optionally scope discovery by market:
companies_list(search="acwa", market="NOMUC")(NOMUCis normalized toNOMU)
Pick a symbol from
results, then call:get_quote(identifier="<symbol>")get_financials(symbol="<symbol>")get_dividends(symbol="<symbol>")get_historical(symbol="<symbol>")
For pagination loops, increment
offsetbylimituntil you reachtotal:companies_list(search="bank", limit=100, offset=0)companies_list(search="bank", limit=100, offset=100)continue until
offset >= total
MCP Guidance Examples
User: "سعر الراجحي" -> call
get_quote(identifier="الراجحي").Follow-up: "قوائم الشركة" -> if previous result includes
resolved_instrument.symbol = "1120", reuse it and callget_financials(symbol="1120").
Example Prompts
"Give me a TASI summary and market mood."
"Give me TASI market movers by gainers."
"Give me NOMU market movers by value."
"Show me sector performance."
"Compare سابك, سبكيم, and 2222 by price change and net liquidity."
"Show me NOMU summary for today."
"Get financials for 2222."
"Get dividends for 2222."
"Get 1d historical data for 1120 from 2026-01-01 to 2026-03-31."
"Tell me about الراجحي and its sector."
Note: get_financials and get_dividends require Sahmk API access on Starter or higher. If unavailable for the current key, the MCP returns the underlying API error.
Note: intraday historical intervals (30m, 60m) may be plan-gated. If unavailable for the current key, the MCP surfaces the API error (for example 403 PLAN_LIMIT).
Release Notes
0.4.7: removeinclude_qualityfrom publicget_financialstool contract, normalize equivalent Arabic-Indic/ASCII digit inputs before identifier conflict checks, and improve Glama form UX with enum selectors for stable ratio/period options.0.4.6: add SDK-backed identifier fallback forget_companyand symbol-first tools (get_financials,get_ratios,compare_symbols,get_dividends,get_historical) when name/alias inputs fail direct symbol lookup.0.4.5: align tosahmk>=0.11.0; extendget_historical.intervalsupport to30m/60m; document intraday plan-gating behavior.0.4.4: docs: clarify official distribution channels (GitHub + PyPI only)0.4.3: Align MCP output contract: no financialsmeta; analyticsmetais limited toperiod,metrics, andwarnings.0.4.2: Add SDK method-name compatibility fallback for analytics (get_ratios/ratios,compare_symbols/compare).0.4.1: Requiresahmk>=0.9.1in package dependency and runtime version guard.0.4.0: Add analytics ratios and compare tools; enhance financials optional parameters.
License
MIT — see LICENSE
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sahmk-sa/sahmk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server