AARO ERP MCP Server
Used for making HTTP requests to the AARO ERP API, enabling token management, data retrieval, and all ERP operations through the integration.
Powers the MCP server that connects Claude Desktop to AARO ERP, providing a runtime environment for the integration capabilities.
Enables browser automation for interacting with AARO ERP system, particularly for token management and web interface operations.
Provides type safety for the MCP server implementation, ensuring reliable integration between Claude Desktop and AARO ERP.
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., "@AARO ERP MCP Serverlist the stock items with quantity below 10"
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.
AARO ERP MCP Server
AARO ERP sistemi için Claude Desktop entegrasyonu sağlayan MCP (Model Context Protocol) server'ı. Bu server, AARO ERP API'sine erişim, token yönetimi ve tüm temel ERP işlemlerini Claude Desktop üzerinden gerçekleştirmenizi sağlar.
📋 Mevcut Araçlar Listesi
Araç Adı | Açıklama | Kategori |
| Token alma ve cache yönetimi | 🔐 Token |
| Token cache silme | 🔐 Token |
| Stok listesi ve filtreleme | 📊 Stok |
| Yeni stok kartı oluşturma | 📊 Stok |
| Stok hareketleri | 📊 Stok |
| Seri/Lot takibi | 📊 Stok |
| Barkod yönetimi | 📊 Stok |
| Cari hesap listeleme | 👥 Cari |
| Yeni cari hesap oluşturma | 👥 Cari |
| Sipariş hareketleri | 📋 Sipariş |
| Fatura hareketleri | 📋 Fatura |
| Depo yönetimi | 🏢 Operasyon |
| Döviz kurları | 🏢 Operasyon |
| Kasa hareketleri | 🏢 Operasyon |
| Banka hesapları | 🏢 Operasyon |
| Personel bilgileri | 🏢 Operasyon |
| Muhasebe dekontları | 🏢 Operasyon |
| Genel API çağrısı | 🔧 Genel |
Toplam: 18 araç
Related MCP server: MCP Server for Odoo
🚀 Hızlı Başlangıç
Ön Gereksinimler
Node.js (v18 veya üzeri)
Claude Desktop uygulaması
AARO ERP hesabı ve erişim yetkisi
📦 Kurulum
Kurulum gerekmez! NPX ile doğrudan kullanabilirsiniz. Paket otomatik olarak indirilir ve çalıştırılır.
⚙️ Claude Desktop Konfigürasyonu
Claude Desktop'ın MCP ayarları dosyasını düzenleyin:
Windows:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.jsonmacOS:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonLinux:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonAşağıdaki konfigürasyonu ekleyin:
{
"mcpServers": {
"aaro-erp": {
"command": "npx",
"args": ["aaro-erp-mcp-server"],
"disabled": false
}
}
}🔄 Claude Desktop'ı Yeniden Başlatın
Konfigürasyon değişikliklerinin etkili olması için Claude Desktop'ı kapatıp yeniden açın.
✅ Kurulum Tamamlandı!
Artık Claude Desktop'ta AARO ERP araçlarını kullanabilirsiniz. İlk kullanımda paket otomatik olarak NPM'den indirilecektir.
🔐 Güvenlik
Bearer token authentication
HTTPS bağlantıları
Kapsamlı hata yakalama ve raporlama
Tarayıcı otomasyonu güvenlik önlemleri
🛠️ Teknik Detaylar
TypeScript ile tip güvenliği
Puppeteer ile tarayıcı otomasyonu
Axios ile HTTP istekleri
MCP SDK ile Claude Desktop entegrasyonu
Modüler yapı ile kolay genişletme
🐛 Hata Ayıklama
Server logları Claude Desktop'ın developer console'unda görüntülenir. Manuel test için:
npx aaro-erp-mcp-server🔧 Geliştirme
NPM Paketi Bilgileri
Paket Adı:
aaro-erp-mcp-serverPlatform Desteği: Windows, macOS, Linux
Node.js Gereksinimi: v18+
Otomatik Güncellemeler: NPX her çalıştırmada en son sürümü kullanır
Katkıda Bulunma
Bu repository'yi fork edin
Feature branch oluşturun (
git checkout -b feature/amazing-feature)Değişikliklerinizi commit edin (
git commit -m 'Add some amazing feature')Branch'inizi push edin (
git push origin feature/amazing-feature)Pull Request oluşturun
Test Etme
Server'ın çalışıp çalışmadığını test etmek için:
# Server'ı manuel olarak başlatın
npx aaro-erp-mcp-server
# Başarılı çıktı:
# [2025-07-21T06:59:59.000Z] [INFO] Konfigürasyon dosyaları başarıyla yüklendi
# [2025-07-21T06:59:59.000Z] [INFO] ERP Token MCP server stdio üzerinde çalışıyor🚨 Sorun Giderme
Yaygın Sorunlar
1. "Server disconnected" hatası:
Node.js versiyonunun v18+ olduğundan emin olun
İnternet bağlantınızı kontrol edin
Claude Desktop'ı yeniden başlatın
2. "Package not found" hatası:
NPM'in düzgün kurulu olduğundan emin olun
npm cache clean --forcekomutunu çalıştırınTekrar deneyin
3. Token alınamıyor:
AARO ERP hesabınızın aktif olduğundan emin olun
İnternet bağlantınızı kontrol edin
Tarayıcı popup'larının engellenip engellenmediğini kontrol edin
4. MCP server görünmüyor:
Konfigürasyon dosyasının doğru konumda olduğundan emin olun
JSON formatının geçerli olduğunu kontrol edin
npx aaro-erp-mcp-serverkomutunun çalıştığından emin olun
Manuel Test
Paketi manuel olarak test etmek için:
# Paketi çalıştır
npx aaro-erp-mcp-server
# Başka bir terminalde test
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/list"}' | npx aaro-erp-mcp-serverCache Temizleme
NPX cache'ini temizlemek için:
# NPX cache temizle
npm cache clean --force
# Belirli paketi temizle
npx clear-npx-cache aaro-erp-mcp-server🔄 Sürüm Geçmişi
v1.0.0 (2025-01-18)
✅ İlk stabil sürüm
✅ 17 temel ERP aracı
✅ Token cache sistemi
✅ Otomatik token yönetimi
✅ Kapsamlı hata yönetimi
✅ TypeScript desteği
📞 Destek ve İletişim
📧 Email: info@aaro.com.tr
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server designed to integrate with Claude Desktop, allowing users to interact with Prestashop e-commerce platforms through natural language interfaces.102ISC
- Alicense-qualityAmaintenanceAn MCP server that enables AI assistants like Claude to interact with Odoo ERP systems through natural language, allowing users to search, create, update, and manage business data in their Odoo instance.365Mozilla Public 2.0
- Alicense-qualityDmaintenanceA Model Context Protocol server that bridges Odoo ERP systems with AI agents, enabling them to access and manipulate partner information, accounting data, invoices, and perform financial reconciliation through a standardized interface.MIT
- Flicense-qualityCmaintenanceA Model Context Protocol server that lets Claude manage keyCRM catalogue, stock, orders, customers, pipelines, and more via natural language.3
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/AaroYazilim/aaro-erp-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server