Skip to main content
Glama
Pearlshaline

Person CRUD MCP Server

by Pearlshaline

Person CRUD MCP Server

An MCP (Model Context Protocol) server that exposes Person CRUD operations as tools for Claude Desktop.

Setup

1. Clone and install

git clone https://github.com/Pearlshaline/person_mcp_server.git
cd person_mcp_server
npm install

2. Configure environment variables

cp .env.example .env
# Edit .env with your Neon database connection strings

3. Generate Prisma Client

npx prisma generate

4. Build

npm run build

5. Configure Claude Desktop

Edit your Claude Desktop config file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "person-crud": {
      "command": "node",
      "args": ["C:/path/to/person-mcp-server/dist/index.js"],
      "env": {
        "DATABASE_URL": "your-pooled-neon-connection-string",
        "DIRECT_URL": "your-direct-neon-connection-string"
      }
    }
  }
}

6. Restart Claude Desktop

Fully quit and reopen Claude Desktop. You should see the 🔨 tools icon.

Related MCP server: PostgreSQL MCP Server for Claude Desktop

Available MCP Tools

Tool

Description

list_persons

Get all persons from the database

get_person

Get a single person by ID

create_person

Create a new person record

update_person

Update an existing person

delete_person

Delete a person by ID

search_persons

Search persons by name or email

Example Prompts in Claude Desktop

  • "List all persons in the database" Example #1

  • "Create a person named John Doe with email john@email.com, age 25, phone + 63 946 882 2314" Example #2

  • "Get person with ID 2" Example #3

  • "Update person 2's age to 36" Example #4

  • "Search for persons named Ana Reyes" Example #5

  • "Delete person with ID 1" Example #6

Tech Stack

  • Node.js + TypeScript

  • MCP SDK (@modelcontextprotocol/sdk)

  • Prisma ORM

  • PostgreSQL (Neon)

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides authenticated access to PostgreSQL databases for Claude AI, enabling users to browse database tables, discover schemas, and execute custom SQL queries through natural language interaction.
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables Claude Desktop to interact with PostgreSQL databases through natural language for schema exploration, data analysis, and query execution. Users can search schemas, describe tables, and perform read or write operations without needing to write manual SQL.
    -
  • A
    license
    A
    quality
    D
    maintenance
    Enables Claude to interact with a local PostgreSQL database through SQL queries, schema inspection, and CRUD operations.
    8
    121
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables Claude Desktop to manage personal expenses through natural language, providing tools to add, retrieve, delete, and summarize expenses stored in a PostgreSQL database.
    1
    -

Latest Blog Posts

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/Pearlshaline/person_mcp_server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server