Official MCP server for Sahmk — use Saudi market data inside AI agents like Cursor and Claude.
Project description
sahmk-mcp
Official 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 |
|---|---|
get_quote |
Snapshot for one stock identifier (symbol, name, or alias) |
get_quotes |
Compare multiple stock identifiers in one call |
companies_list |
Company directory/symbol discovery with pagination |
get_market_summary |
Summary for TASI or NOMU |
get_market_movers |
Top movers by gainers, losers, volume, or value |
get_sectors |
Sector performance snapshot |
get_company |
Company profile and fundamentals |
get_financials |
Financial statements (Starter+ plan) |
get_ratios |
Calculated financial ratios (Starter/Pro features vary) |
compare_symbols |
Multi-symbol normalized ratio/metrics comparison (Starter/Pro limits vary) |
get_dividends |
Dividend history and yield data (Starter+ plan) |
get_historical |
Historical OHLCV data |
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_)
Installation
pip install sahmk-mcp
Requires sahmk>=0.9.2 for symbol discovery (companies_list) and identifier-aware quote resolution (identifier/identifiers).
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-mcp
Tool 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: requires exact exchange symbol.get_financials.periodandget_financials.statement_period: if both are provided,periodtakes precedence.get_financialssupports optional passthrough params:type,period,statement_period,history,metrics,result,include_quality, andinclude_partial.get_financialsresponse is statement-block focused and does not includemeta.get_ratios.symbol: requires exact exchange symbol.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.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: requires exact exchange symbol.get_historical.symbol: requires exact exchange symbol.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, or1m.- 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")
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.
Release Notes
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sahmk_mcp-0.4.3.tar.gz.
File metadata
- Download URL: sahmk_mcp-0.4.3.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba43f7ca450150686fbc381f9c4dcc047e02235ba657606808ccb2a11030df29
|
|
| MD5 |
3861dbbf584b1b49244531cd6cf106c7
|
|
| BLAKE2b-256 |
911d3c64c5b0e13e82c4c46e4d6f0990f81d093b3d7aefd62d605526057db1c1
|
Provenance
The following attestation bundles were made for sahmk_mcp-0.4.3.tar.gz:
Publisher:
publish-pypi.yml on sahmk-sa/sahmk-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sahmk_mcp-0.4.3.tar.gz -
Subject digest:
ba43f7ca450150686fbc381f9c4dcc047e02235ba657606808ccb2a11030df29 - Sigstore transparency entry: 1406074487
- Sigstore integration time:
-
Permalink:
sahmk-sa/sahmk-mcp@57127cebddf597ffee2db9e4a3e4ca17522fc5ae -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sahmk-sa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@57127cebddf597ffee2db9e4a3e4ca17522fc5ae -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file sahmk_mcp-0.4.3-py3-none-any.whl.
File metadata
- Download URL: sahmk_mcp-0.4.3-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
305534dd5bcf98788ed83ab9c0d13b46e9aa84197fef41246639264e26aa59d4
|
|
| MD5 |
7193a6d967a3e25b18b290ac7b7a83f2
|
|
| BLAKE2b-256 |
4e582a28988a3922d05907333ce2aa3b08846144cd2d4cd3b702f11118a5eebd
|
Provenance
The following attestation bundles were made for sahmk_mcp-0.4.3-py3-none-any.whl:
Publisher:
publish-pypi.yml on sahmk-sa/sahmk-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sahmk_mcp-0.4.3-py3-none-any.whl -
Subject digest:
305534dd5bcf98788ed83ab9c0d13b46e9aa84197fef41246639264e26aa59d4 - Sigstore transparency entry: 1406074523
- Sigstore integration time:
-
Permalink:
sahmk-sa/sahmk-mcp@57127cebddf597ffee2db9e4a3e4ca17522fc5ae -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sahmk-sa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@57127cebddf597ffee2db9e4a3e4ca17522fc5ae -
Trigger Event:
workflow_dispatch
-
Statement type: