GitHub Repository
All source code for this project is publicly available on GitHub. Click the links below to view the repositories.
person_search
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
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
How to Run Locally
1
git clone https://github.com/Pearlshaline/person_search.gitClone the full-stack app repository
2
git clone https://github.com/Pearlshaline/person_mcp_server.gitClone the MCP server repository
3
cd person-search && npm installInstall app dependencies
4
cp .env.example .env # Add your DATABASE_URLSet up environment variables
5
npx prisma migrate dev && npx prisma db seedSet up database and seed data
6
npm run devStart the development server at localhost:3000