mcp-server-using-quarkus-postgresql-angular

This project is an application that integrates a server built using the Quarkus framework, a PostgreSQL database, and an Angular frontend. Developers can create modern web applications through efficient API communication and data management. It particularly leverages Quarkus's fast startup time and PostgreSQL's robust data storage capabilities.

GitHub Stars

0

User Rating

Not Rated

Favorites

0

Views

16

Forks

0

Issues

0

README

Modern full-stack CRUD application using Quarkus (RESTful backend), PostgreSQL (structured database), and Angular (interactive frontend), seamlessly integrated with the Model Context Protocol (MCP) to enable context-aware interactions with generative AI models.

Technologies Used
  • Quarkus CLI: sdk install quarkus
  • JDK 24: sdk install java 24-open
  • Node.js: nvm install 24 and nvm use 24
  • Angular CLI: npm install -g @angular/cli
  • PostgreSQL: Install via docker command:
    docker run --name postgres -e POSTGRES_DB=crud_app -e POSTGRES_PASSWORD=postgres -p 5432:5432 -d postgres
    
  • Create backend service skaffold:
    quarkus create app --no-code -x rest-client-jackson,qute,mcp-server-stdio dev.bupadhyay.demo:order-service:1.0-SNAPSHOT
    
  • Create frontend app skaffold:
    ng new order-app --routing --style=scss --prefix=order