A PostgreSQL database integration server that provides type-safe CRUD operations for user data through MCP tools. Built with TypeScript and Prisma, it enables easy database interactions with a standardized interface, supporting operations like retrieving, adding, updating, and deleting user records with robust input validation.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Retrieve user data from PostgreSQL. Parameters: tableName (string - the name of the table to retrieve data from)
Add new user to database. Parameters: email (string - the user's email), name (string - the user's name), age (number - the user's age)
Delete user by ID, email or name. Parameters: id (string - the user's ID), email (string - the user's email), name (string - the user's name)
Update user information. Parameters: id (string - the user's ID), email (string - the new email), name (string - the new name)