vibe-code-mcp
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., "@vibe-code-mcpI need a form validation library for React"
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.
Vibe Code MCP
שרת MCP מלא ל‑Claude Code שמתחבר לאתר vibe-code-best-practices.vercel.app ויודע לנתב בדיוק איזה כלי / ספרייה / Skill מהאתר מתאים לצורך שלך — בעברית או באנגלית.
השרת מאנדקס את כל הקטלוג של האתר (817 כלים ב‑185 sections ו‑10 תחומים), מנתב לפי צורך חופשי בעזרת מילון קונספטים דו‑לשוני, ויכול גם להמליץ על stack שלם.
מה הוא יודע לעשות (ה‑Tools)
Tool | מה הוא עושה |
| ⭐ הכלי המרכזי. מקבל תיאור חופשי של מה שאתה בונה/צריך ומחזיר את הכלים הכי מתאימים מהאתר, מדורגים עם נימוק, פקודת התקנה וקישור לתיעוד. |
| מחזיר stack שלם וקוהרנטי (Framework, Styling, Components, DB, Auth, Payments, Testing, Deploy...) לפי |
| חיפוש מילולי על כל 817 הערכים (שם, קטגוריה, section, תיאור). |
| רשימת התחומים העליונים עם ספירות. |
| רשימת כל ה‑sections (אפשר לסנן לפי תחום). |
| כל הכלים בתוך section מסוים (לפי id או שם). |
| פרטים מלאים על כלי בודד. |
| משיכה מחדש של הקטלוג מהאתר החי. |
| סטטוס ומקור הקטלוג + סטטיסטיקות. |
Resources: vibe-code://catalog, vibe-code://domains, vibe-code://stats.
התחומים (domains)
getting-started · modern-stack · web · mobile · design · ai-agents · skills · mcp · dev-tools · learning
Related MCP server: Code Search MCP
התקנה
cd /private/tmp/vibe-code-mcp
npm install
npm run buildבדיקה מהירה שהכול עובד:
npm run selftestרישום ב‑Claude Code
הדרך הקלה (CLI):
claude mcp add vibe-code -- node /private/tmp/vibe-code-mcp/dist/index.jsלהתקנה גלובלית (זמין בכל הפרויקטים):
claude mcp add --scope user vibe-code -- node /private/tmp/vibe-code-mcp/dist/index.jsלחלופין, ידנית דרך .mcp.json בשורש הפרויקט (או ~/.claude.json):
{
"mcpServers": {
"vibe-code": {
"command": "node",
"args": ["/private/tmp/vibe-code-mcp/dist/index.js"]
}
}
}אחרי הרישום, הפעל מחדש את Claude Code ובדוק עם /mcp שהשרת vibe-code מחובר.
דוגמאות שימוש (בתוך Claude Code)
פשוט תשאל בשפה טבעית — Claude יקרא ל‑route_project אוטומטית:
"אני בונה אפליקציית React Native וצריך אנימציות חלקות — מה הכי מתאים?" → React Native Reanimated, RN Ease, RN Micro Interactions
"צריך מערכת תשלומים ומנויים ל‑SaaS ב‑Next.js" → Stripe, Autumn, Polar (Payments & Billing)
"טבלאות נתונים עם חיפוש וסינון לאתר" → Bazza Data Table Filter
"תן לי stack שלם לאפליקציית web" → Next.js + shadcn/ui + Drizzle + Better Auth + TanStack Query + Resend + PostHog + Sentry + Vercel
איך זה עובד
מקור הנתונים — האתר הוא SPA (Vite + TanStack Router). כל הקטלוג טמון ב‑JS chunk (
routes-*.js). השרת פותר את השרשרתhomepage → index chunk → routes chunk, מפרסר את ה‑object literals ובונה היררכיה:domains → sections → tools.Snapshot אופליין —
data/catalog.snapshot.jsonמצורף לחבילה כך שהשרת עובד גם בלי רשת. ברקע הוא מנסה לרענן מהאתר החי (cache ל‑12 שעות ב‑tmp).מנוע הניתוב (
src/search.ts) — טוקניזציה דו‑לשונית, מילון קונספטים (auth, payments, animation, database, i18n, hebrew, mobile, ai...) שמרחיב מונחים ומחזק את ה‑sections הרלוונטיים, וניקוד משוקלל על שם/קטגוריה/section/תיאור + סינון פלטפורמה.
עדכון ה‑snapshot מהאתר
npm run refresh-snapshotמשתני סביבה
משתנה | ברירת מחדל | תיאור |
|
|
|
|
| TTL ל‑cache של הרענון החי. |
מבנה הפרויקט
vibe-code-mcp/
├── data/catalog.snapshot.json # קטלוג מצורף (offline fallback)
├── src/
│ ├── index.ts # entry point — רישום tools/resources + stdio
│ ├── parser.ts # חילוץ הקטלוג מ‑bundle האתר + fetch חי
│ ├── catalog.ts # טעינה, cache, snapshot, refresh
│ ├── search.ts # מנוע הניתוב, מילון קונספטים, recommend_stack
│ └── types.ts
└── package.jsonMaintenance
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-qualityDmaintenanceEnables LLMs to dynamically discover and execute tools through a structured skills system. Serves as a documentation hub where skills are defined in directories, allowing progressive loading and interpretation of capabilities.Last updatedMIT
- Flicense-qualityDmaintenanceEnables LLMs to perform high-performance code search and analysis across multiple languages using symbol indexing, regex text search, and structural AST pattern matching. It also provides tools for technology stack detection and dependency analysis with persistent caching for optimized performance.Last updated6
- AlicenseAqualityCmaintenanceServes 484 Claude Code skills and 17 global rules as MCP tools, enabling skill and rule retrieval, keyword search, and project-level rule discovery for any Claude client.Last updated11162MIT
- AlicenseAqualityBmaintenanceEnables searching and browsing a curated matrix of 100+ engineering tools by name, tag, or use case, and retrieving ready-to-use boilerplate files for 30+ popular stacks.Last updated3242MIT
Related MCP Connectors
Curated knowledge API for AI agents - skill packs, semantic search, validated patterns.
Vendor intelligence for AI coding agents choosing developer tools and stacks.
Live SEO workflow tools for Claude Code, Codex, and AI agents.
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/arielaizn/vibe-code-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server