GitHub Repository

All source code for this project is publicly available on GitHub. Click the links below to view the repositories.

person_search

View on GitHub

Full-stack Person CRUD application built with Next.js 15, Prisma ORM, and PostgreSQL. Features complete Create, Read, Update, and Delete operations with a responsive, modern UI.

Next.js 15TypeScriptPrismaPostgreSQLTailwind CSSVercel

person_mcp_server

View on GitHub

MCP server that enables Claude Desktop to perform Person CRUD operations via natural language. Connects seamlessly to the person-search backend.

MCPNode.jsPrismaTypeScript

GitHub Profile

Pearlshaline Gumiran

@Pearlshaline

3rd Year BSIT Student · St. Paul University Philippines

@Pearlshaline

How to Run Locally

1
git clone https://github.com/Pearlshaline/person_search.git

Clone the full-stack app repository

2
git clone https://github.com/Pearlshaline/person_mcp_server.git

Clone the MCP server repository

3
cd person-search && npm install

Install app dependencies

4
cp .env.example .env # Add your DATABASE_URL

Set up environment variables

5
npx prisma migrate dev && npx prisma db seed

Set up database and seed data

6
npm run dev

Start the development server at localhost:3000