Project Planner MCP

Project Planner MCP

MCP server for structured Laravel project planning. Scans projects, creates tickets, and exports as JSON.

Category
Visit Server

README

Project Planner MCP

MCP-Server für strukturierte Laravel-Projektplanung. Scannt dein Projekt, erstellt Tickets, exportiert als JSON.

inspect → plan → export → GitLab/Todoist

Installation

Via Claude Code (empfohlen)

claude mcp add project-planner -- npx @brnbio/project-planner-mcp

Manuell in ~/.claude.json

{
  "mcpServers": {
    "project-planner": {
      "command": "npx",
      "args": ["@brnbio/project-planner-mcp"]
    }
  }
}

Dann Claude Code neustarten.


Usage

Schritt 1: Projekt analysieren

Navigiere in dein Laravel-Projekt und starte Claude Code:

cd /pfad/zu/deinem/laravel-projekt
claude

Dann:

> Analysiere das Projekt.
> Aktueller Stand: Auth funktioniert, Dashboard ist leer
> Ziel: User können Zeiten erfassen und sehen eine Wochen-Übersicht

Claude nutzt inspect und scannt automatisch:

  • Models + Relations
  • Migrations (DB-Schema)
  • Controllers + Methods
  • Routes
  • Vue Pages & Components

Output: project_context.json

Schritt 2: Tickets planen

> Plane die Umsetzung

Claude analysiert den Gap zwischen IST und SOLL, stellt Rückfragen:

  • Welche Entitäten werden benötigt?
  • Wie hängen sie zusammen?
  • Was ist der MVP?

Dann generiert er Tickets mit 4h/8h Schätzungen.

Output: tickets_draft.json

Schritt 3: Tickets exportieren

> Exportiere die Tickets

Review der Ticket-Liste, dann Bestätigung.

Output: tickets_final.json

[
  {
    "title": "TimeEntry Model + Migration",
    "description": "Erstelle TimeEntry Model mit user_id, started_at, ended_at, description.\n\n## Checkliste\n- [ ] Migration erstellen\n- [ ] Model mit Fillables\n- [ ] Factory erstellen\n- [ ] Relation zu User",
    "estimate": "4h",
    "labels": ["Backend", "Database"]
  }
]

Schritt 4: Issues erstellen (optional)

Mit deinen bestehenden MCPs:

> Erstelle GitLab Issues aus tickets_final.json
> Erstelle Todoist Tasks aus tickets_final.json

Tools

Tool Input Output
inspect currentState, targetState project_context.json
plan (clarifications) tickets_draft.json
export confirm: true tickets_final.json

Output-Dateien

Alle Dateien landen im Projektverzeichnis und können versioniert werden:

dein-laravel-projekt/
├── project_context.json   # IST + SOLL + Analyse
├── tickets_draft.json     # Entwürfe
├── tickets_final.json     # Finale Tickets
└── ...

Tipp: Füge die JSON-Dateien zum Git hinzu als Planungs-Dokumentation.


Ticket-Schema

interface Ticket {
  title: string;
  description: string;      // Mit Markdown-Checkliste
  estimate: "4h" | "8h";
  labels: ("Backend" | "Frontend" | "Testing" | "Database")[];
}

Tech Stack

Optimiert für:

  • Laravel 12 + Inertia.js v2
  • Vue 3 Composition API
  • PestPHP
  • Tailwind CSS

Publishing (für Maintainer)

npm login
npm publish --access public

Lizenz

MIT

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured