MCP Project Management Server
Enables AI assistants to manage project analysis, code metrics, documentation, Git operations, code quality, and file organization through natural language commands.
README
MCP Project Management Server
Smart File and Project Management MCP Server - A comprehensive Model Context Protocol (MCP) server where AI assistants can manage project analysis, code metrics, documentation, and Git operations.
🎯 Ne İşe Yarar?
MCP Project Management Server, AI asistanlarının (Cursor, Claude, vb.) projeleri analiz etmesi, kod kalitesini değerlendirmesi, dokümantasyon oluşturması ve Git işlemlerini yönetmesi için kapsamlı bir MCP server'dır.
Temel Özellikler
- 📊 Proje Analizi: Proje yapısı analizi, bağımlılık haritalama, dosya organizasyonu
- 📈 Kod Metrikleri: Complexity analizi, code coverage, performans metrikleri
- 📝 Dokümantasyon: Otomatik dokümantasyon oluşturma, API dokümantasyonu, README generation
- 🔧 Git Yönetimi: Commit analizi, branch yönetimi, diff görüntüleme, merge conflict çözümü
- 🔍 Kod Kalitesi: Linting, code review, best practices kontrolü
- 📁 Dosya Yönetimi: Dosya arama, organizasyon, template oluşturma
🚀 Kurulum
Gereksinimler
- Node.js 18 veya üzeri
- npm veya yarn
- TypeScript (dev dependency)
- Git (Git işlemleri için)
Adımlar
- Repository'yi klonlayın:
git clone https://github.com/code-alchemist01/project-managment-mcp-Server.git
cd project-managment-mcp-Server
- Bağımlılıkları yükleyin:
npm install
- Projeyi derleyin:
npm run build
- Test edin:
npm start
📦 Cursor'a Kurulum
1. MCP Config Dosyasını Oluştur/Düzenle
Windows:
%APPDATA%\Cursor\User\globalStorage\mcp.json
macOS/Linux:
~/.config/Cursor/User/globalStorage/mcp.json
2. Config İçeriği
{
"mcpServers": {
"project-management": {
"command": "node",
"args": [
"C:\\Users\\YourUsername\\path\\to\\project-managment-mcp-Server\\dist\\index.js"
]
}
}
}
Not: args içindeki path'i kendi proje yolunuza göre güncelleyin.
3. Cursor'u Yeniden Başlatın
Config dosyasını kaydettikten sonra Cursor'u tamamen kapatıp yeniden açın.
4. Doğrulama
Cursor'da Settings > Tools & MCP bölümünde "project-management" listede görünmeli.
🛠️ Kullanım
Cursor Chat'te Örnek Komutlar
Proje yapısını analiz et
Kod metriklerini göster
README dosyası oluştur
Git commit geçmişini göster
Kod kalitesi raporu oluştur
Bağımlılık ağacını görselleştir
📋 MCP Tools
Proje Analizi (6)
analyze_project_structure- Proje yapısını analiz etanalyze_dependencies- Bağımlılıkları analiz etgenerate_dependency_graph- Bağımlılık grafiği oluşturfind_unused_files- Kullanılmayan dosyaları bulanalyze_file_organization- Dosya organizasyonunu analiz etdetect_code_smells- Kod kokularını tespit et
Kod Metrikleri (5)
calculate_complexity- Kod karmaşıklığını hesaplaget_code_statistics- Kod istatistiklerini getiranalyze_test_coverage- Test coverage analizimeasure_performance- Performans metriklerigenerate_metrics_report- Metrik raporu oluştur
Dokümantasyon (5)
generate_readme- README dosyası oluşturgenerate_api_docs- API dokümantasyonu oluşturdocument_code- Kod dokümantasyonu oluşturcreate_changelog- CHANGELOG oluşturgenerate_architecture_doc- Mimari dokümantasyon oluştur
Git Yönetimi (6)
analyze_git_history- Git geçmişini analiz etshow_git_status- Git durumunu göstercreate_git_branch- Git branch oluşturanalyze_commits- Commit'leri analiz etresolve_merge_conflicts- Merge conflict çözümügenerate_git_report- Git raporu oluştur
Kod Kalitesi (5)
run_linter- Linter çalıştırperform_code_review- Kod incelemesi yapcheck_best_practices- Best practices kontrolüfind_security_issues- Güvenlik sorunlarını bulgenerate_quality_report- Kalite raporu oluştur
Dosya Yönetimi (4)
search_files- Dosya aramaorganize_files- Dosyaları organize etcreate_file_template- Dosya şablonu oluşturmanage_project_structure- Proje yapısını yönet
📁 Proje Yapısı
project-managment-mcp-Server/
├── src/
│ ├── index.ts # MCP server ana giriş noktası
│ ├── server.ts # MCP server implementasyonu
│ ├── tools/ # MCP tools
│ │ ├── project-analysis.ts # Proje analizi
│ │ ├── code-metrics.ts # Kod metrikleri
│ │ ├── documentation.ts # Dokümantasyon
│ │ ├── git-management.ts # Git yönetimi
│ │ ├── code-quality.ts # Kod kalitesi
│ │ └── file-management.ts # Dosya yönetimi
│ ├── analyzers/ # Analiz motorları
│ │ ├── project-analyzer.ts # Proje analizi
│ │ ├── code-analyzer.ts # Kod analizi
│ │ ├── dependency-analyzer.ts # Bağımlılık analizi
│ │ └── quality-analyzer.ts # Kalite analizi
│ ├── generators/ # Generator'lar
│ │ ├── doc-generator.ts # Dokümantasyon generator
│ │ ├── template-generator.ts # Şablon generator
│ │ └── report-generator.ts # Rapor generator
│ ├── utils/ # Yardımcı fonksiyonlar
│ │ ├── git-utils.ts # Git yardımcıları
│ │ ├── file-utils.ts # Dosya yardımcıları
│ │ └── formatters.ts # Formatlayıcılar
│ └── types/ # TypeScript tip tanımları
│ └── index.ts
├── dist/ # Derlenmiş JavaScript dosyaları
├── package.json
├── tsconfig.json
└── README.md
🔧 Geliştirme
Development Modu
npm run dev
Build
npm run build
Test
npm test
📝 Örnek Kullanım Senaryoları
Senaryo 1: Proje Analizi ve Dokümantasyon
// Cursor chat'te:
"Proje yapısını analiz et"
"Bağımlılık grafiğini oluştur"
"README dosyası oluştur"
"API dokümantasyonu oluştur"
Senaryo 2: Kod Kalitesi ve Metrikler
// Cursor chat'te:
"Kod metriklerini hesapla"
"Kod kalitesi raporu oluştur"
"Test coverage analizi yap"
"Best practices kontrolü yap"
Senaryo 3: Git Yönetimi
// Cursor chat'te:
"Git commit geçmişini analiz et"
"Yeni bir feature branch oluştur"
"Merge conflict'leri çöz"
"Git raporu oluştur"
🔐 Güvenlik
- Dosya sistem erişim kontrolü
- Git repository güvenliği
- Input validation ve sanitization
- Sensitive data detection
- Secure file operations
📊 Çıktı Formatları
- JSON - Structured data responses
- Markdown - Raporlar ve dokümantasyon
- HTML - Web tabanlı raporlar
- SVG/PNG - Grafikler ve diyagramlar
- CSV - Veri export
🤝 Katkıda Bulunma
- Fork edin
- Feature branch oluşturun (
git checkout -b feature/amazing-feature) - Commit edin (
git commit -m 'Add amazing feature') - Push edin (
git push origin feature/amazing-feature) - Pull Request açın
📄 Lisans
MIT License - Detaylar için LICENSE dosyasına bakın.
🙏 Teşekkürler
- Model Context Protocol - MCP standardı için
- Cursor - MCP desteği için
📞 İletişim
Sorularınız veya önerileriniz için issue açabilirsiniz.
⭐ Bu projeyi beğendiyseniz yıldız vermeyi unutmayın!
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.