This n8n demonstrates how to build a simple PostgreSQL MCP server to manage your PostgreSQL database, such as HR, Payroll, Sale, Inventory, and more!
This MCP example is based on an official MCP reference implementation.
How it works
A MCP server trigger is used and connected to 5 tools: 2 PostgreSQL and 3 custom workflows. The 2 PostgreSQL tools are simple read-only queries, and as such, the PostgreSQL tool can be simply used.
The 3 custom workflow tools are used for select, insert, and update queries, as these are operations that require a bit more discretion.
Whilst it may be easier to allow the agent to use raw SQL queries, we may find it a little safer to just allow for the parameters instead. The custom workflow tool allows us to define this restricted schema for tool input, which we’ll use to construct the SQL statement ourselves.
All 3 custom workflow tools trigger the same “Execute workflow” trigger in this very template, which has a switch to route the operation to the correct handler. Finally, we use our standard PostgreSQL node to handle select, insert, and update operations. The responses are then sent back to the MCP client.
How to use
This PostgreSQL MCP server allows any compatible MCP client to manage a PostgreSQL database by supporting select, create, and update operations. You will need to have a database available before you can use this server.
Try the following queries in your MCP client:
– “Please help me check if Alex has an entry in the users table. If not, please help me create a record for her.”
– “What was the top selling product in the last week?”
– “How many high priority support tickets are still open this morning?”
Requirements
– PostgreSQL for the database. This can be an external database such as Supabase or one you can host internally.
– MCP Client or Agent for usage.
Customizing this workflow
If the scope of schemas or tables is too open, try to restrict it so the MCP serves a specific purpose for business operations. For example, confine the querying and editing to HR-only tables before providing access to people in that department.
Remember to set the MCP server to require credentials before going to production and sharing this MCP server with others!