🐒 GitHub Copilot Agent Mode + MCP server ile geliştirilmiş C# konsol uygulaması. 20+ maymun türü, ASCII art, Türkçe UI
{
"mcpServers": {
"my-monkey-app": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
🐒 GitHub Copilot Agent Mode + MCP server ile geliştirilmiş C# konsol uygulaması. 20+ maymun türü, ASCII art, Türkçe UI
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 257 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for My Monkey App and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Bu proje, çeşitli maymun türleri hakkında bilgi edinmek için geliştirilmiş interaktif bir konsol uygulamasıdır. C# ve .NET 9.0 kullanılarak geliştirilmiş olup, Model Context Protocol (MCP) server entegrasyonu ile desteklenmektedir.
🤖 Bu proje GitHub Copilot Agent Mode kullanılarak geliştirilmiştir. Yapay zeka destekli geliştirme sürecinin bir örneğidir.
Bu proje MonkeyMCP server ile entegre çalışacak şekilde tasarlanmıştır. MCP konfigürasyonu .vscode/mcp.json dosyasında tanımlanmıştır:
{
"inputs": [],
"servers": {
"monkeymcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"jamesmontemagno/monkeymcp"
],
"env": {}
},
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp/"
}
}
}
jamesmontemagno/monkeymcp| Seçenek | Açıklama | |---------|----------| | 1️⃣ | Tüm maymunları listele | | 2️⃣ | Belirli bir maymun ara | | 3️⃣ | Rastgele maymun getir | | 4️⃣ | Maymun ailelerini göster | | 5️⃣ | Nesli tükenmekte olan türler | | 6️⃣ | Index ile maymun getir | | 7️⃣ | Toplam maymun sayısı ve istatistikler | | 8️⃣ | Ekranı temizle | | 9️⃣ | Çıkış |
MyMonkeyApp/
├── .vscode/
│ └── mcp.json # MCP server konfigürasyonu
├── Models/
│ └── Monkey.cs # Maymun veri modeli
├── Services/
│ └── MonkeyService.cs # İş mantığı ve veri yönetimi
├── Helpers/
│ └── AsciiArtHelper.cs # ASCII art gösterimleri
├── Program.cs # Ana uygulama ve menü sistemi
├── MyMonkeyApp.csproj # Proje dosyası
└── README.md # Bu dosya
public class Monkey
{
public string Name { get; set; } // Maymun adı
public string Family { get; set; } // Aile kategorisi
public string Habitat { get; set; } // Doğal yaşam alanı
public string Region { get; set; } // Coğrafi bölge
public string Status { get; set; } // Koruma durumu
public int AverageLifespan { get; set; } // Ortalama yaşam süresi
public string Diet { get; set; } // Beslenme türü
}
# Projeyi klonlayın
git clone https://github.com/KardelRuveyda/MyMonkeyApp.git
# Proje dizinine gidin
cd MyMonkeyApp
# Docker'ın çalıştığından emin olun
docker --version
# MCP server'ı test edin (opsiyonel)
docker run -i --rm jamesmontemagno/monkeymcp
# Uygulamayı çalıştırın
dotnet run