Midas-MCP
Click on "Deploy 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., "@Midas-MCPPortföyümü ve açık pozisyonlarımı özetle"
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.
Ajan tahtayı okur, emri hazırlar. Emir, sen onaylamadan Midas'a gitmez.
Midas aracı kurumunun web uygulaması Atlas için bir MCP sunucusu. Bir AI asistanın portföyünü, pozisyonlarını, işlem geçmişini ve piyasa verisini okumasını sağlar. Emir araçları varsayılan kapalıdır; açıldığında da her emir masaüstünde senin onayını bekler.
English: README.en.md

Resmî değildir
Resmî değildir. Bu proje Midas Menkul Değerler A.Ş. ya da Midas Finansal Teknolojiler A.Ş. ile bağlantılı değildir; onlar tarafından geliştirilmez, onaylanmaz, desteklenmez. "Midas" adı yalnızca hangi hizmetle çalıştığını söylemek için geçer; Midas logosu ve marka öğeleri kullanılmaz.
Yatırım tavsiyesi değildir. Araçların döndürdüğü veri ve hesaplamalar (teknik göstergeler dahil) bilgi amaçlıdır. Yazılım olduğu gibi, hiçbir garanti olmadan sunulur.
Yalnız kendi hesabında, kendi riskinle. Midas Genel Çerçeve Sözleşmesi m. 1.11'e göre müşteri, Midas'ın izni olmadan Elektronik İşlem Platformu'na üçüncü şahısların müdahalesine rıza gösteremez; sözleşme ayrıca platformun yalnızca müşterinin kendisi tarafından kullanılmasını ve şifrenin kimseyle paylaşılmamasını ister. Bu araç, hesap sahibinin kendi bilgisayarında kendi hesabı için çalıştırması içindir. Başkasının hesabını yönetmek, başkası adına işlem yapmak ya da bunu hizmet olarak sunmak için kullanılmaz. Sözleşmenin güncel hâlini kendin oku; bu not hukuki görüş değildir.
Kimlik bilgileri yalnız yerelde kalır. Telefon, şifre ve oturum dosyası senin makinende durur; kod bunları yalnızca Midas'ın kendi giriş formuna gönderir.
Related MCP server: rgo-trading-api
Özellikler
Okuma araçları. Portföy değeri, nakit ve alım gücü, açık pozisyonlar, anlık fiyat ve enstrüman bilgisi; BIST hisseleri, ABD hisse ve ETF'leri, TEFAS fonları, elinde olmayanlar dahil.
İşlem geçmişi. Atlas'taki "İşlem geçmişi" ekranının tamamı: alış satışlar, TL ve döviz hareketleri, temettü, nema, stopaj; tarih, kategori ve duruma göre süzülür.
Teknik analiz. RSI, hareketli ortalamalar, MACD, Bollinger, ATR, oynaklık, destek ve direnç tek çağrıda; ham OHLCV mumları ayrıca.
Masaüstü onay kapısı. Emir araçları açıksa her emir, güncelleme ve iptal senin ekranında bir pencere açar. Varsayılan Hayır'dır; Evet basılı tutularak verilir.
Emirler varsayılan kapalı. Bayrak verilmezse emir araçları asistanın araç listesinde hiç görünmez.
Kalıcı oturum. Telefondaki bildirimi bir kez onaylarsın; oturum saklanır, düşerse sunucu tek bir giriş akışıyla kendini toparlar.
stdio ya da HTTP. Doğrudan MCP istemcisine bağlanır ya da yerelde kalıcı bir servis olarak birden çok istemciye aynı oturumu paylaştırır.

Kurulum
Gerekenler: Node.js 20+, Linux masaüstü (emir onayı için), Midas hesabı ve telefonundaki Midas uygulaması.
1. Klonla ve derle
git clone https://github.com/YakupEmreYerli/mcp-midas.git
cd mcp-midas
npm ci
npx playwright install chromium
npm run build2. Kimlik bilgilerini ortamla ver
Sunucu yalnızca process.env okur; ortam değişkeni enjekte edebilen herhangi bir sır
yöneticisi çalışır. En basit yol gitignore'lu bir .env dosyası:
cp .env.example .envMIDAS_PHONE=5XXXXXXXXX # ülke kodu olmadan cep telefonu
MIDAS_PASSWORD=sifren
HEADLESS=true
MAX_ORDER_VALUE_TRY=10000 # ek tavan; masaüstü onayı her zaman gerekir
# MIDAS_ORDERS_ENABLED=1 # emir araçlarını açar (varsayılan kapalı)3. İlk giriş
Midas girişte mobil uygulamada bildirim onayı ister, bu yüzden ilk giriş etkileşimlidir:
npm run login # görünür tarayıcı açar; telefondaki bildirimi onayla
npm run smoke # portföyü, pozisyonları ve bir fiyatı yazdırırOturum .midas-state.json dosyasına (0600, gitignore'lu) yazılır ve sonraki açılışlarda
geri yüklenir. Yenileme çerezinin ömrü (~24 saat) dolarsa sunucu kendi kendine yeniden
giriş yapar; bu giriş yine bildirim onayı isteyebilir.
4. MCP istemcisine ekle
claude mcp add midas -- node /mutlak/yol/mcp-midas/dist/index.jsJSON yapılandırması okuyan istemciler için:
{
"mcpServers": {
"midas": {
"command": "node",
"args": ["/mutlak/yol/mcp-midas/dist/index.js"]
}
}
}5. (İsteğe bağlı) Kalıcı HTTP servisi
dist/http.js sunucuyu 127.0.0.1:8766 üzerinde Streamable HTTP olarak çalıştırır;
tarayıcı oturumu açık kalır ve birden çok istemci aynı oturumu paylaşır. /mcp istekleri
~/.config/mcp-midas/token dosyasındaki (ilk açılışta 0600 izinle üretilir) bearer token
ile doğrulanır; /health doğrulama istemez. Port MIDAS_HTTP_PORT, token dosyası
MIDAS_TOKEN_FILE ile değişir. Örnek systemd kullanıcı servisi
(~/.config/systemd/user/midas-mcp.service):
[Unit]
Description=Midas MCP (127.0.0.1:8766)
After=graphical-session.target
PartOf=graphical-session.target
[Service]
WorkingDirectory=/mutlak/yol/mcp-midas
# Emir araçlarını istiyorsan:
# Environment=MIDAS_ORDERS_ENABLED=1
ExecStart=/usr/bin/env node dist/http.js
Restart=on-failure
[Install]
WantedBy=graphical-session.targetsystemctl --user enable --now midas-mcp.serviceOnay penceresi masaüstü ister; servis grafik oturumuna bağlı çalışmalıdır. Wayland
oturumunda pencere yerel Wayland penceresi olarak açılır (Wayland açılamazsa XWayland/X11'e
düşer; MIDAS_ONAY_X11=1 X11'i zorlar). KDE Plasma'da KWin'e geçici bir betik yüklenir:
betik yalnız onay sürecinin penceresini üstte tutar ve ekranın ortasına alır; KWin yoksa bu
adım atlanır. Pencere simgesinin masaüstünde Midas-MCP logosu olarak görünmesi için bir kez:
onay/masaustu-kur.sh # ~/.local/share/applications/midas-mcp-onay.desktop (+ simge)
onay/masaustu-kur.sh --kaldir # geri almak içinEmir araçlarını açmak
Emir araçları yalnız şu ortam değişkeni tam olarak 1 ise kaydedilir:
MIDAS_ORDERS_ENABLED=1Değişken yoksa (ya da true, yes gibi başka bir değerse) place_order, update_order
ve cancel_order MCP araç listesinde hiç görünmez; asistan bunları çağıramaz,
varlıklarını da bilmez. Bayrak yalnız araçların var olup olmadığını belirler. Açıkken de
hiçbir emir onay penceresi olmadan gönderilmez.
Araçlar
Okuma (her zaman açık)
Araç | Argümanlar | Ne döner |
| – | TL cinsinden toplam değer, günlük kâr/zarar, hesap başına nakit ve alım gücü (TRY / USD / EUR) |
| – | Açık pozisyonların hepsi: adet, ortalama maliyet, fiyat, piyasa değeri, kâr/zarar |
|
| Son fiyat, önceki kapanış, % değişim, seans durumu |
|
| Enstrüman adı, pazar, açıklama, güncel fiyat ve Atlas istatistikleri (TEFAS: risk, valör, vergi, yönetim ücreti; hisse: günlük bant, 52 haftalık aralık, oranlar). |
|
| Bekleyen emirler; |
|
| Hesap hareketleri: hisse/ETF/fon işlemleri, TL transferleri, döviz, nema, stopaj, temettü. Varsayılan: son 30 gün |
| – |
|
|
| RSI(14), SMA/EMA (20/50/200), MACD, Bollinger, ATR, yıllık oynaklık, 52 haftalık aralık, destek/direnç, hacim/ortalama |
|
| Ham OHLCV mumları (en çok 500) |
Okumada sembol çözümü bulanıktır. Semboller arama ile bulunur ve bilinmeyen bir kod hata vermek yerine en yakın eşleşmeye düşer:
VOOisteninceIOOfonu,TTEistenince aynı kodlu Türk fonu yerine TotalEnergies dönebilir. Yanıttakinamevecurrencyalanlarını kontrol et. Emir araçları birebir sembol ister ve bulanık eşleşmeyi reddeder.
Emir (varsayılan kapalı)
Araç | Argümanlar | Ne yapar |
| birebir | BIST hisse MARKET/LIMIT emri ve TEFAS fonu DEMAND satış emri |
|
| Bekleyen LIMIT/STOP/kâr al/zarar durdur emrini günceller |
|
| Uygun bekleyen emri iptal eder |
TEFAS fon satışı DEMAND emri ve adetle desteklenir. Fon alımı şimdilik bilerek reddedilir:
isteğin TL tutarı mı adet mi taşıması gerektiği kanıtlanmadı, sunucu tahmin etmez.
Güvenlik

Onay penceresi. Her emir aracı enstrümanı ve hesabı Midas'tan çözer, önizlemeyi bu veriyle kurar ve MCP sunucusunun kendi sürecinde yerel bir pencere açar: tasarımlı pencere (
onay/onay.py, PySide6 + QtWebEngine, önizleme stdin'den, ağ erişimi yok); açılamazsakdialog --menu, o da açılamazsazenity.Varsayılan Hayır. Evet basılı tutularak verilir; Enter onaylamaz. Esc, pencereyi kapatmak ya da 120 saniye sessizlik Hayır demektir. Onaylar sıraya girer; aynı anda tek pencere görünür.
Hata ret değildir. Ekran yoksa ya da pencere açılamazsa işlem yine reddedilir ama bu "onay penceresi açılamadı" hatası olarak bildirilir, kullanıcı reddi sayılmaz.
Atlatma kanalı yok. MCP arayüzünde
confirmed,approveya da onayı atlayan bir argüman, ortam değişkeni veya ayar yoktur.Onaydan sonra yeniden doğrulama. Sunucu sembolü ve güncel fiyatı yeniden çözer; enstrüman değişmişse ya da fiyat %2'den fazla oynamışsa işlem iptal edilir.
MAX_ORDER_VALUE_TRYtavanı (varsayılan ₺10.000) ek bir sınırdır, onayın yerine geçmez. Emir isteği 401 alırsa otomatik yinelenmez; yeni çağrı yeni onay ister.Denetim günlüğü. Her deneme ve sonucu
.midas-orders.log.jsonldosyasına 0600 izinle, kimlik bilgisine benzeyen alanlar ayıklanarak yazılır; hangi pencerenin açıldığı da kaydedilir.
Pencereler örnek veriyle çekildi; hesap ve emir kimlikleri gerçek değildir.
Onay penceresi Linux masaüstü için yazıldı. Pencere açılamayan bir ortamda emir araçları hiçbir emri gönderemez. Hassas dosyalar, kapsam ve açık bildirme yolu: SECURITY.md.
Nasıl çalışır
Midas'ın herkese açık bir API'si yok. Sunucu Atlas web uygulamasını
Playwright ile sürer: tek bir oturumlu tarayıcı tutar ve web
uygulamasının yaptığı GraphQL çağrılarını sayfanın içinden (page.evaluate) yapar;
oturum çerezleri kendiliğinden eklenir. Belgelenmemiş iç uç noktalara dayandığı için
Midas bir değişiklik yaptığında haber vermeden bozulabilir.
Atlas kimliği access_token (~15 dk) ve refresh_token (~24 sa) çerezlerinde tutar ve
Chromium bunları profile yazmaz; bu yüzden oturum her başarılı açılıştan sonra
storageState() ile saklanır. 401/403 alan bir okuma isteği paylaşılan giriş akışından
sonra bir kez yinelenir. Geçidin istediği x-midas-rid ve x-apollo-operation-name
başlıkları gibi ayrıntılar CONTRIBUTING.md içindeki "Depoya özgü
tuzaklar" bölümünde.
scripts/ API'yi haritalamak için kullanılan araçları tutar (Midas değişirse diye); bu
araçların ürettiği discovery/ klasörü hesap verisi içerebilir ve gitignore'ludur.
Deneysel BIST tarama kodu. Upstream'den gelen nicel kural seti
(docs/analiz-kurallari.md, özeti METHOD.md)
ve onu uygulayan tarama, geriye dönük test ve konumlama kodu (src/backtest.ts,
rescore.ts, positioning.ts, positions-scan.ts, snapshot.ts, vwap.ts,
inflation.ts) depodadır. Doğrulanmamıştır, yatırım tavsiyesi değildir; MCP sunucusu
bunlara bağlı değildir.
Belgeler
Belge | Ne anlatır |
BIST tarama yönteminin tek sayfalık özeti | |
Ajanın tarama ve puanlamada uyduğu tam kural seti | |
Marka kiti: logo, renkler, yazı, üslup, Midas'la ilişki | |
Kurulum, gönderim öncesi komutlar, depoya özgü tuzaklar | |
Güvenlik açığı bildirimi, hassas dosyalar, alınmış önlemler | |
Onay penceresinin tasarım sistemi |
Geliştirme
npm test # birim testleri; Midas'a bağlanmaz, gerçek emir göndermez
npm run buildGeliştirme ve testte gerçek emir gönderilmez; ajan kuralları AGENTS.md içinde.
Kaynak ve lisans
Bu proje, Ahmet Deniz Yılmaz'ın
ahmetdenizyilmaz/midas-mcp deposundan
çatallandı. Çatallanma noktası upstream'in a1bf39c commit'idir ("Keep scan output out of
the repo", 3 Ağustos 2026); sonraki geliştirmeler bu depoda yapıldı.
Upstream deposunda ayrı bir LICENSE dosyası yoktur; lisans beyanı
package.json
içindeki "license": "MIT" alanı ve README'nin "License" bölümündedir. Bu depo aynı MIT
lisansıyla dağıtılır. LICENSE iki telif satırı taşır: özgün kod için Ahmet Deniz
Yılmaz, sonraki değişiklikler için Yakup Emre Yerli. Marka öğeleri ve yazı tipi lisansları
docs/brand içinde.
Available Tools
9 toolsget_asset_infoARead-only
Bir enstrümanın tanıtıcı bilgilerini (tam ad, pazar, açıklama) güncel fiyatıyla ve Atlas enstrüman sayfası istatistikleriyle döner: TEFAS fonlarında risk seviyesi (riskLevel), valör, vergi, yıllık yönetim ücreti ve yatırımcı sayısı; hisselerde günlük fiyat bandı, 52 haftalık aralık ve oranlar. Sembol araması bulanıktır: exactMatch ve name alanlarını kontrol et.
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Aranacak sembol ya da şirket adı |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint, so the description adds value by disclosing the fuzzy symbol search behavior and the need to check exactMatch and name fields. It also enumerates the returned data categories, which is beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single well-structured paragraph that front-loads the core purpose and then provides detailed examples. It is not overly verbose and every sentence adds value, though it could be slightly more concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no output schema, the description thoroughly covers the return content for different instrument types and mentions fuzzy search. It is sufficiently complete for an agent to invoke correctly, though it doesn't address error handling or not-found cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter symbol is fully described in the schema (100% coverage). The description adds meaning by stating that search is fuzzy and that exactMatch and name fields should be checked, which is not in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns asset identifying info, current price, and Atlas statistics, with specific details for funds and stocks. This distinguishes it from siblings like get_asset_price and get_technicals by covering comprehensive info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for comprehensive asset info but does not explicitly contrast with alternatives like get_asset_price. No exclusions or when-not-to-use guidance is provided, leaving the choice to the agent's inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_asset_priceARead-only
Bir sembolün son işlem fiyatını önceki kapanış, yüzde değişim ve seansın açık olup olmadığıyla birlikte döner.
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Sembol, ör. TUCLK, THYAO, AAPL | |
| currency | No | Fiyatı enstrümanın kendi para birimi yerine bu para birimine çevir |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds context by specifying exactly what data will be returned (price, previous close, % change, market open status), which is useful beyond the annotations. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the primary output (last transaction price) and then lists supporting fields. There is zero redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 2-parameter tool with no output schema, the description fully covers the return payload: price, previous close, percentage change, and session open status. Nothing essential is missing for an agent to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both 'symbol' and 'currency' already documented with examples and conversion instructions. The tool description adds no parameter-specific detail, so baseline 3 is appropriate—the schema carries the burden.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the last transaction price along with previous close, percentage change, and market open status. This is a specific verb-resource pair with concrete return fields, and it distinguishes from siblings like get_chart or get_asset_info which cover broader data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The purpose is clear enough that an agent can infer it is for fetching price-related data, but there is no explicit guidance on when to prefer this over get_asset_info or get_chart. No alternatives or exclusions are mentioned, so the usage context is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_assetsARead-only
Tüm açık pozisyonları (BIST hisseleri, ABD hisseleri, TEFAS fonları, ABD opsiyonları) adet, ortalama maliyet, güncel fiyat, piyasa değeri ve kâr/zararla listeler.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the agent knows this is a safe read operation. The description adds the scope (all open positions across four asset classes) and the exact fields returned, which is useful context. However, it doesn't disclose whether positions are sorted, whether closed positions are excluded, or any pagination/limit behavior. With annotations covering the safety profile, a 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that front-loads the core purpose (listing open positions) and enumerates the asset classes and return fields without any waste. Every element earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only list tool with annotations covering safety, the description is nearly complete. It specifies the asset classes and return fields. The only minor gap is not mentioning whether the list is sorted or if there are any limits, but these are not critical for an agent to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, so the schema provides no parameter documentation. The description compensates by clearly stating what the tool returns (quantity, average cost, current price, market value, profit/loss) and the asset classes covered. With 0 params, the baseline is 4, and the description meets that baseline by providing clear output semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists all open positions across four asset classes (BIST stocks, US stocks, TEFAS funds, US options) and specifies the exact fields returned (quantity, average cost, current price, market value, profit/loss). This is a specific verb+resource combination that distinguishes it from siblings like get_portfolio or get_transactions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is the tool for open positions, but it doesn't explicitly state when to use it versus alternatives like get_portfolio or get_transactions. The context is clear enough for an agent to infer usage, but there's no explicit when/when-not guidance or mention of alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_chartARead-only
Bir sembolün ham OHLCV mumlarını döner (açılış, en yüksek, en düşük, kapanış, hacim, zaman damgası). Hesaplanmış göstergeler için get_technicals kullan; bunu yalnız ham seri gerektiğinde kullan.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Mum sayısı (en çok 500) | |
| symbol | Yes | Mumları alınacak sembol | |
| interval | No | Mum aralığı; varsayılan günlük (1d) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful context by specifying that the tool returns unprocessed OHLCV data and lists the returned fields, but it does not disclose ordering, pagination, or data-range behavior. This adds some value beyond the annotations but leaves behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences deliver the core purpose, field list, and the alternative tool routing without any filler or repetition. The primary action is front-loaded and every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a moderate-complexity read-only data tool, the description covers the essential selection criteria (raw vs. calculated, field list) and the schema covers parameters. With no output schema, the field enumeration partially compensates for the lack of a structural return description; the main omission is ordering/pagination, but the tool remains callable correctly from the provided context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all three parameters (symbol, limit, interval) are already documented in the schema, including the interval enum and the 500-candle maximum. The description itself does not add parameter-level meaning beyond saying the result is raw OHLCV, so a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('döner' = returns), the resource (raw OHLCV candles for a symbol), and enumerates the exact fields (open, high, low, close, volume, timestamp). It also differentiates the tool from get_technicals by emphasizing raw vs. calculated data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly instructs when to use this tool versus the sibling: use get_technicals for calculated indicators and only use get_chart when a raw series is needed. This is direct, actionable routing guidance with no ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_pending_ordersARead-only
Henüz gerçekleşmemiş emirleri emir kimlikleriyle listeler. symbol verilmezse tüm hesaplardaki (BIST, TEFAS, ABD) bekleyen emirler tek çağrıda döner; symbol verilirse yalnız o enstrümanın emirleri.
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | No | İsteğe bağlı sembol; tüm bekleyen emirler için boş bırak |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds valuable behavioral context: account aggregation across BIST/TEFAS/ABD in a single call and symbol-based filtering behavior, which are non-obvious and useful for invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single compact sentence delivers both the core purpose and the conditional behavior with no filler. The most important scoping information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple: one optional parameter, read-only annotation, and the description covers both invocation modes and the kind of data returned (order IDs). No output schema is present, but the description sufficiently indicates return content.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the symbol property is already documented. The description adds meaningful semantics beyond the schema: empty means all accounts, populated means only that instrument, which directly informs how the agent should call the tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('lists'), a clear resource ('pending orders'), and includes the distinguishing qualifier 'not yet realized' with order IDs. This clearly differentiates it from sibling tools like get_transactions and get_portfolio.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit conditional guidance: omit symbol to get all accounts in one call, provide symbol to filter to one instrument. It does not explicitly name an alternative for executed orders, but the sibling context makes that distinction inferable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_portfolioARead-only
Portföyün TL cinsinden toplam değerini, günlük kâr/zararı ve Türkiye (BIST/TRY) ile ABD (USD) hesaplarının nakit bakiyesini ve alım gücünü döner.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is known. The description adds valuable behavioral context by specifying exactly what data is returned (TL total value, daily P/L, cash and buying power for both BIST and USD accounts), which is not derivable from annotations or the empty schema. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, efficient sentence that front-loads the core purpose and lists the returned components without any filler. Every phrase adds meaning, and there is no redundant restatement of the tool name or trivial details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only, no-parameter tool with no output schema, the description sufficiently conveys what the agent will receive, including specific financial metrics and account breakdowns. Nothing essential is missing for an agent to understand the tool's behavior and decide whether to call it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so the description has no obligation to explain parameter behavior. Per the baseline for no-parameter tools, a 4 is appropriate because the schema is trivially complete and the description correctly focuses on output rather than input.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (returns) and the resource (portfolio), enumerating specific data items (total value in TL, daily P/L, cash balances and buying power for BIST/TRY and USD accounts). This is distinct from sibling tools like get_assets or get_transactions, which target individual assets or transaction histories.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes it evident this tool is for retrieving an overall portfolio summary, which is the clear context of use. However, it does not explicitly mention alternatives or when not to use it, unlike a definition that names a sibling. Still, the context is unambiguous for an agent seeking portfolio-level metrics.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_technicalsARead-only
Bir sembolün fiyat geçmişinden tam bir teknik analiz özeti hesaplar: RSI(14), SMA/EMA (20/50/200), MACD, Bollinger bantları, ATR ve yıllıklandırılmış oynaklık, 52 haftalık aralık, dönüş noktalarından (swing pivot) destek/direnç seviyeleri ve hacmin ortalamaya oranı. Bunları kendi analizinde girdi olarak kullan; hiçbiri yatırım tavsiyesi değildir.
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Analiz edilecek sembol, ör. TUCLK, ASELS, THYAO | |
| interval | No | Mum aralığı; varsayılan günlük (1d) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and openWorldHint=true. The description adds a behavioral disclaimer that none of the results are investment advice and clarifies that it produces a computed summary rather than raw data, offering context beyond the annotations without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with purpose, followed by a necessary indicator list and a short usage/disclaimer sentence. Every part earns its place, though the list is long; it remains informative and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description compensates by enumerating the computed indicators and adding a usage note. It does not describe the output structure or pagination, but for a 2-parameter, read-only tool this is sufficient for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both symbol and interval already documented in the input schema. The description adds no extra parameter semantics, such as how interval affects calculations or default values, so it stays at the baseline for full schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool computes a full technical analysis summary from price history, enumerating specific indicators (RSI, SMA/EMA, MACD, Bollinger, ATR, volatility, etc.). This makes it straightforwardly distinct from siblings like get_chart or get_asset_price.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied by the detailed description and the instruction to use outputs as analysis input, but it never names alternatives or gives explicit when-not-to-use conditions compared to sibling tools. No exclusions or tool comparisons are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_transaction_filtersARead-only
get_transactions filtresi olarak kullanılabilecek Atlas işlem geçmişi kategori ağacını (id, name, parentId) listeler.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and openWorldHint, so the safety profile is covered. The description adds useful behavioral context beyond annotations: the returned structure includes id/name/parentId, and the data represents a category hierarchy for filtering transaction history.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The entire description is one compact sentence that states the resource, its purpose, and its fields without repetition or filler. Every part contributes to an agent's understanding of what the tool returns and why it exists.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless, read-only tool with no output schema, the description is complete: it names the data source (Atlas transaction history), the domain (category tree), the fields (id, name, parentId), and the intended usage (get_transactions filter). Nothing needed to invoke it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and schema description coverage is 100%, so there are no parameter semantics for the description to explain. The baseline for a parameterless tool is therefore appropriate, and the description adds all relevant semantic information about the result.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('listeler') and resource (Atlas transaction history category tree) and identifies the exact fields returned (id, name, parentId). It clearly separates this tool from get_transactions by positioning it as the filter taxonomy for that sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says the tree is intended as a filter for get_transactions, giving a clear use context. It does not mention exclusion cases or alternative tools, but with zero parameters and a specialized purpose, this is sufficient guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_transactionsARead-only
Hesap hareketleri geçmişi (Atlas 'İşlem geçmişi'), en yeni önce: hisse/ETF/TEFAS fonu alış ve satışları, TL yatırma ve çekme, döviz alış/satış, nema, stopaj, temettü, anında nakit. Her satırda tarih/saat, kategori, sembol, yön, emir tipi, adet, ortalama fiyat, tutar, para birimi ve durum (COMPLETED, PENDING, CANCELLED, REJECTED, EXPIRED) bulunur. Bekleyen satırlar her zaman dahildir. Varsayılan: son 30 gün.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Sayfa başına satır, varsayılan 100 | |
| filter | No | Atlas kategori kimliği: orders, o_buy, o_sell, journal, j_try, j_usd, exchange, e_usd, interest, i_try, dividend, instant_cash, other. Tam liste için get_transaction_filters | |
| offset | No | Sayfalama için atlanacak satır sayısı | |
| status | No | Varsayılan ALL | |
| details | No | Her satırın ayrıntı sayfasını da getir (tam saat, kur, komisyon, banka…); satır başına bir ek istek | |
| to_date | No | Bitiş tarihi (dahil), YYYY-AA-GG (varsayılan: bugün) | |
| from_date | No | Başlangıç tarihi (dahil), YYYY-AA-GG (varsayılan: 30 gün önce) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds useful behavioral detail: newest-first ordering, inclusion of pending rows regardless of status filter, the full set of statuses, and the default 30-day window. These go beyond the structured annotations and help the agent understand runtime behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense paragraph that front-loads the core purpose and then adds enumerations of transaction types, row fields, and defaults. Every sentence contributes value, but the list of categories and statuses makes it moderately long. It is efficient for its content, though a clearer separation of key defaults would improve scannability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only list tool with no output schema, the description covers the important aspects: what transactions are included, the row fields, the statuses, the inclusion of pending rows, and the default date range. It does not describe pagination behavior or error/rate-limit handling, but the schema covers parameters and annotations cover safety. The reference to get_transaction_filters in the schema partially handles filter usage, so the description is fairly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds context about defaults (e.g., 'son 30 gün' aligns with from_date/to_date defaults) and pending-row behavior related to status, but it does not explain parameters like filter or details beyond what the schema already states. It neither fully compensates for gaps nor adds significant new parameter meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: it returns transaction history ('Hesap hareketleri geçmişi'), and enumerates the transaction categories covered (stock/ETF/TEFAS trades, TL/FX deposits and withdrawals, interest, dividend, instant cash). It also notes the ordering (newest first) and that pending rows are always included, which helps distinguish it from get_pending_orders and other siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly conveys what the tool returns and its scope, but it does not explicitly state when to use this tool versus alternatives such as get_pending_orders, or provide any exclusions. The phrase 'Bekleyen satırlar her zaman dahildir' implies pending rows are covered, but no sibling routing is given, so guidance is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
9 tool updates
v0.2.0- First observed
get_asset_info - First observed
get_asset_price - First observed
get_assets - First observed
get_chart - First observed
get_pending_orders - First observed
get_portfolio - First observed
get_technicals - First observed
get_transaction_filters - First observed
get_transactions
TDQS
Scored across 9 tools
Each tool targets a distinct resource: technicals (computed indicators), chart (raw OHLCV), transactions (history), transaction filters (category tree), portfolio (account summary), assets (open positions), asset price (latest quote), asset info (metadata), and pending orders (unfilled orders). Overlap between get_asset_price and get_asset_info is minimal and clearly differentiated by descriptions.
All nine tools follow a consistent 'get_' prefix followed by a descriptive noun (technicals, chart, transactions, transaction_filters, portfolio, assets, asset_price, asset_info, pending_orders). Naming is uniform in snake_case and clearly indicates the retrieved data.
The server has 9 tools, which is well within the ideal 3–15 range. Each tool serves a distinct data retrieval need for a financial analysis server, with no redundancy or excessive bloat.
The tool set covers a comprehensive range of read-only financial data: raw price history, computed indicators, account history, portfolio valuation, open positions, latest quotes, instrument metadata, and pending orders. Minor gaps include lack of order placement/cancellation (if intended as a trading server) and no batch retrieval of multiple symbols, but for a data-focused MCP these are acceptable.
Maintenance
Related MCP Connectors
Trade journal plus read-only market, research, and brokerage data tools for external AI clients.
- HAVNOAuthapp.havnre
Read-only AI access to HAVN properties, leads, tasks, files, media, and analytics.
- OsboonOAuthcom.osboon
Read-only AI access to Osboon business card analytics, viewers, links, connections and contacts.
Connect your portfolio to Claude, ChatGPT, or Codex to analyze it and make smarter investments.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with OKX trading accounts through read-only access to retrieve portfolio information, trading positions, order history, and account analytics. Provides secure, local processing of trading data without storing sensitive information or enabling trade execution.57 npm4MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to read positions, deals, and orders from the RGO trading platform via natural language, with optional trading capabilities when explicitly enabled.MIT
- AlicenseBqualityDmaintenanceGives AI assistants real-time access to Interactive Brokers accounts via the Client Portal Web API, with 26 read-only tools for portfolio, market data, options, and scanner.327 npm2MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to interact with BCS brokerage accounts for portfolio viewing, quotes, order book, candles, position analysis, and rebalancing planning using natural language, with read-only mode by default and optional trade execution with confirmation.157 npm2Apache 2.0