MCP GitHub README Generator
An MCP server that analyzes GitHub repositories and automatically generates README.md files. Supports multiple AI providers and offers web, MCP tool, and n8n workflow modes.
README
🤖 MCP GitHub README Generator
🚀 AI destekli GitHub repository analizi ile otomatik README.md oluşturucu
Model Context Protocol (MCP) standardında geliştirilmiş, akıllı analiz yapan hibrit tool
📸 Proje Önizlemesi
<div align="center">

Modern web arayüzü ile GitHub repository analizi ve README.md oluşturma
</div>
✨ Özellikler
- 🔍 Derin Repo Analizi - Tüm dosya yapısını ve teknolojileri otomatik tespit
- 📝 Akıllı İçerik Üretimi - Proje türüne göre özelleştirilmiş README bölümleri
- 🌐 Çoklu Kullanım Modu - MCP tool'u VEYA web arayüzü olarak kullanım
- 🎨 Modern Tasarım - Badge'ler, ikonlar ve responsive layout
- ⚡ Hızlı Kurulum - Tek komutla çalışır duruma gelir
- 🔧 n8n Entegrasyonu - Workflow automation desteği
- 🤝 MCP Standartları - Model Context Protocol ile tam uyumlu
🛠️ Teknoloji Yığını
| Kategori | Teknolojiler |
|---|---|
| Frontend | |
| MCP Server | |
| Build Tool | |
| AI Providers | |
| Automation |
🎯 Kullanım Modları
1. 🌐 Web Arayüzü Modu
Modern, kullanıcı dostu web arayüzü ile:
# Geliştirme sunucusunu başlat
npm run dev
# Production build
npm run build
Özellikler:
- Görsel repository analizi
- Gerçek zamanlı README önizleme
- Drag & drop dosya yükleme
- Responsive tasarım
2. 🤖 MCP Tool Modu
AI client'ları (Claude, Cursor, Continue.dev) ile entegrasyon:
# MCP server'ı build et
npm run build:mcp
# MCP server'ı başlat
npm run mcp
Desteklenen AI Client'lar:
- Claude Desktop
- Cursor IDE
- Continue.dev
- Diğer MCP uyumlu client'lar
3. 🔄 n8n Workflow Modu
Otomatik README oluşturma workflow'ları:
# n8n workflow'unu import et
# n8n-workflows/readme-generator-workflow.json
📸 Önizleme
Web Arayüzü
🎯 GitHub Repo Analizi
┌─────────────────────────────────────────────┐
│ https://github.com/user/awesome-project │
│ ↓ Dosya tarama ve analiz │
│ ✅ package.json → React + TypeScript │
│ ✅ src/ klasörü → Komponent yapısı │
│ ✅ API endpoints → Backend entegrasyonu │
└─────────────────────────────────────────────┘
📝 Otomatik README.md Üretimi
┌─────────────────────────────────────────────┐
│ ✨ Proje başlığı + badge'ler │
│ 📋 Özellik listesi │
│ 🛠️ Teknoloji yığını │
│ ⚡ Kurulum adımları │
│ 📖 Kullanım rehberi │
│ 🤝 Katkı kılavuzu │
└─────────────────────────────────────────────┘
MCP Tool Kullanımı
Claude: "Bu GitHub repository için README oluştur: https://github.com/facebook/react"
MCP Tool: ✅ Repository analiz ediliyor...
✅ Teknolojiler tespit ediliyor...
✅ README.md oluşturuluyor...
📄 Profesyonel README.md hazır!
🚀 Hızlı Başlangıç
Ön Gereksinimler
- Node.js 18+
- npm veya yarn
- GitHub token (opsiyonel, rate limit için)
Kurulum
# Repository'yi klonlayın
git clone https://github.com/yourusername/mcp-readme-generator.git
cd mcp-readme-generator
# Bağımlılıkları yükleyin
npm install
# Environment variables'ları ayarlayın
cp .env.example .env
# .env dosyasını düzenleyin
# Web arayüzü için
npm run dev
# MCP server için
npm run build:mcp
npm run mcp
MCP Entegrasyonu
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"readme-generator": {
"command": "node",
"args": ["./dist/mcp-server.js"],
"env": {
"GITHUB_TOKEN": "your_github_token"
}
}
}
}
Continue.dev
.continue/config.json:
{
"mcpServers": [
{
"name": "readme-generator",
"command": "node ./dist/mcp-server.js"
}
]
}
📚 Kullanım Örnekleri
Web Arayüzü
- Tarayıcıda
http://localhost:5173açın - GitHub repository URL'ini girin
- Dil ve stil seçeneklerini ayarlayın
- "Analiz Et" butonuna tıklayın
- README'yi indirin
MCP Tool
// Claude ile kullanım
"Bu repository için Türkçe README oluştur: https://github.com/vercel/next.js"
// Cursor ile kullanım
"Analyze this repo and generate a detailed README: https://github.com/microsoft/vscode"
n8n Workflow
# Webhook'a POST request
curl -X POST https://your-n8n.com/webhook/readme-webhook \
-H "Content-Type: application/json" \
-d '{
"repoUrl": "https://github.com/user/project",
"config": {
"language": "tr",
"style": "modern",
"notify": true
}
}'
📁 Proje Yapısı
mcp-readme-generator/
├── 📁 src/
│ ├── 📁 components/ # React bileşenleri
│ │ └── MCPDemo.tsx # Ana demo bileşeni
│ ├── 📄 mcp-server.ts # MCP server implementation
│ ├── 📄 App.tsx # React app
│ └── 📄 main.tsx # Entry point
├── 📁 docs/ # Dokümantasyon
│ ├── 📄 MCP_INTEGRATION.md # MCP entegrasyon rehberi
│ ├── 📄 N8N_SETUP.md # n8n kurulum rehberi
│ └── 📄 EXAMPLE_OUTPUT.md # Örnek çıktılar
├── 📁 n8n-workflows/ # n8n workflow dosyaları
│ └── 📄 readme-generator-workflow.json
├── 📄 package.json
├── 📄 mcp-config.json # MCP konfigürasyonu
├── 📄 .env.example # Environment variables
└── 📄 README.md
🔧 API Referansı
MCP Tools
generate_readme
GitHub repository için README.md oluşturur.
Parametreler:
repoUrl(string, required): GitHub repository URL'ilanguage('tr' | 'en' | 'multi'): Çıktı dili (default: 'en')style('minimal' | 'modern' | 'detailed'): README stili (default: 'modern')includeBadges(boolean): Badge'leri dahil et (default: true)includeTree(boolean): Proje ağacını dahil et (default: true)
analyze_repository
Repository yapısını ve teknolojilerini analiz eder.
Parametreler:
repoUrl(string, required): GitHub repository URL'ideep(boolean): Derin analiz yap (default: false)
trigger_n8n_workflow
n8n workflow'unu tetikler.
Parametreler:
webhookUrl(string, required): n8n webhook URL'irepoUrl(string, required): GitHub repository URL'iconfig(object): Konfigürasyon ayarları
Response Format
interface ReadmeResult {
success: boolean;
analysis: {
name: string;
description: string;
technologies: string[];
projectType: 'frontend' | 'backend' | 'fullstack' | 'cli' | 'library';
hasTests: boolean;
hasCI: boolean;
};
readme: string;
metadata: {
generatedAt: string;
language: string;
style: string;
};
}
🌟 Desteklenen Proje Türleri
- ✅ Frontend: React, Vue, Angular, Svelte
- ✅ Backend: Node.js, Python, Rust, Go
- ✅ Mobile: React Native, Flutter
- ✅ Desktop: Electron, Tauri
- ✅ CLI Tools: Node.js, Python, Rust
- ✅ Libraries: npm packages, Python packages
🔄 n8n Workflow Özellikleri
Otomatik İşlemler
- Repository analizi
- Teknoloji tespiti
- README oluşturma
- Email bildirimi (opsiyonel)
- Webhook response
Konfigürasyon
{
"repoUrl": "https://github.com/user/project",
"config": {
"language": "tr",
"style": "modern",
"includeBadges": true,
"includeTree": true,
"notify": true
}
}
🤝 Katkıda Bulunma
Projeye katkıda bulunmak için:
- 🍴 Fork edin
- 🌟 Feature branch oluşturun:
git checkout -b feature/amazing-feature - 💾 Commit yapın:
git commit -m 'feat: add amazing feature' - 📤 Push edin:
git push origin feature/amazing-feature - 🔄 Pull Request açın
Geliştirme Ortamı Kurulumu
# Repository'yi fork edin ve klonlayın
git clone https://github.com/MustafaKemal0146/github-readme-generator-mcp.git
# Bağımlılıkları yükleyin
npm install
# Web arayüzünü başlatın
npm run dev
# MCP server'ı test edin
npm run build:mcp
npm run mcp
📋 Roadmap
- [ ] 🎨 Custom Template System - Kullanıcı tanımlı şablonlar
- [ ] 🔍 Advanced Analytics - Kod kalitesi analizi
- [ ] 🌐 Multi-language Support - Daha fazla dil desteği
- [ ] 📊 Statistics Dashboard - Proje istatistikleri
- [ ] 🔗 GitHub Actions Integration - CI/CD entegrasyonu
- [ ] 📱 Mobile App - React Native companion app
- [ ] 🤖 More AI Providers - Groq, Cohere, local models
🚨 Troubleshooting
GitHub Rate Limit
# GitHub token ekleyin
export GITHUB_TOKEN=your_token_here
MCP Server Başlatma
# Build kontrolü
npm run build:mcp
# Server test
node dist/mcp-server.js --help
n8n Webhook
# Webhook test
curl -X POST your-webhook-url \
-H "Content-Type: application/json" \
-d '{"repoUrl": "https://github.com/test/repo"}'
📄 Lisans
Bu proje MIT Lisansı altında lisanslanmıştır.
🙏 Teşekkürler
- Model Context Protocol - MCP standartları için
- GitHub API - Repository analizi için
- OpenAI - AI destekli içerik üretimi için
- n8n - Workflow automation için
- Shields.io - Güzel badge'ler için
📞 İletişim
- 🛜 WebSite: https://mustafakemalcingil.site/
- 📧 Email: ismustafakemal0146@gmail.com
- 💼 LinkedIn: mustafakemal0146
- 🐙 GitHub: @mustafakemal0146
<div align="center">
🌟 Bu projeyi beğendiyseniz yıldız vermeyi unutmayın!
</div>
<div align="center"> ✨ Bu README.md, Model Context Protocol (MCP) ile güçlendirilmiş yapay zekanın sihirli dokunuşuyla otomatik olarak oluşturuldu. ✨
</div>
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
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.