by kemalersin
Access real-time Turkish mutual fund data and insights with FonParam for accurate investment analysis and research in Tu
Integrates with FonParam's Turkish mutual funds API to provide real-time fund data, performance metrics, and market insights for investment analysis and research in Turkey's financial markets.
FonParam is a community-built MCP server published by kemalersin that provides AI assistants with tools and capabilities via the Model Context Protocol. Access real-time Turkish mutual fund data and insights with FonParam for accurate investment analysis and research in Tu It is categorized under finance. This server exposes 15 tools that AI clients can invoke during conversations and coding sessions.
You can install FonParam in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
FonParam is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
FonParam reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
We wired FonParam into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
I recommend FonParam for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
According to our notes, FonParam benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We evaluated FonParam against two servers with overlapping tools; this profile had the clearer scope statement.
FonParam has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
FonParam is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: FonParam surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We wired FonParam into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: FonParam is the kind of server we cite when onboarding engineers to host + tool permissions.
showing 1-10 of 63
Bu Model Context Protocol (MCP) sunucusu, Claude Desktop'un Türkiye'deki yatırım fonları verilerine erişmesini sağlar. FonParam API üzerinden fonların güncel verilerini, performans istatistiklerini ve karşılaştırmalarını alabilirsiniz.
<a href="https://glama.ai/mcp/servers/@kemalersin/fonparam-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@kemalersin/fonparam-mcp/badge" alt="FonParam MCP server" /> </a>NPM paketi otomatik olarak çalıştırılacağı için ayrı kurulum gerekmez. Claude Desktop konfigürasyonunda npx kullanarak paketi çalıştırabilirsiniz.
npm install
npm run build
Claude Desktop'ın claude_desktop_config.json dosyasına aşağıdaki konfigürasyonu ekleyin:
%APPDATA%\Claude\claude_desktop_config.json
~/Library/Application Support/Claude/claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
Konfigürasyon:
{
"mcpServers": {
"fonparam": {
"command": "npx",
"args": ["-y", "fonparam-mcp"],
"env": {}
}
}
}
{
"mcpServers": {
"fonparam": {
"command": "node",
"args": ["/tam/yol/to/fonparam-mcp/dist/index.js"],
"env": {}
}
}
}
Not: Kaynak koddan kurulum için
/tam/yol/to/fonparam-mcpkısmını projenizin gerçek yolu ile değiştirin.
Konfigürasyonu ekledikten sonra Claude Desktop'ı kapatıp yeniden açın.
list_funds: Fonları listeler ve filtrelertop_performing_funds: En iyi performans gösteren fonları getirircompare_funds: Fonları karşılaştırır (2-5 fon)analyze_fund: Fon yatırım analizi yaparfund_historical_data: Fonun geçmiş değerlerini getirirlist_companies: Portföy yönetim şirketlerini listelercompany_details: Şirket detaylarını getirirstatistics: Günlük istatistikleri listelerlatest_statistics: En son istatistikleri getirirstatistics_by_date: Belirli tarihteki istatistikleri getirirlist_fund_types: Fon tiplerini listelerfund_type_details: Fon tipi detaylarını getiririnflation_rates: Enflasyon verilerini listelerlatest_inflation_rate: En son enflasyon verisini getirirmonthly_inflation_rate: Belirli ay/yıl enflasyon verisini getirirEn iyi performans gösteren 10 fonu göster
"ATA PORTFÖY" şirketine ait fonları listele
AAK ve DAH fonlarını karşılaştır
AAK fonuna 10.000 TL yatırıp yıl başından bugüne kadar kaç para olacağını hesapla
Hisse senedi fonlarının bu ayki performansını göster
Son enflasyon verilerini göster
# TypeScript derlemesi (watch mode)
npm run dev
# Projeyi derle
npm run build
# Sunucuyu başlat
npm start
# Derleme dosyalarını temizle
npm run clean
src/
├── index.ts # Ana MCP sunucusu
├── api-client.ts # FonParam API client
├── tools.ts # MCP araçları tanımları
└── types.ts # TypeScript tip tanımları
git checkout -b feature/amazing-feature)git commit -m 'feat: amazing new feature')git push origin feature/amazing-feature)Bu proje MIT lisansı altında lisanslanmıştır.
Bu sunucu FonParam API'sinin ücretsiz katmanını kullanır ve rate limiting kurallarına tabidir:
Yoğun kullanım için API anahtarı almayı düşünebilirsiniz.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.