drio
Open app

MCP Server PostgreDB Finder

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Server PostgreDB Finder is a tool designed to help users find PostgreSQL databases associated with MCP servers.

To use the MCP Server PostgreDB Finder, first install the necessary dependencies using the command bun install, then run the application with bun run index.ts.

  • Fast and efficient database searching capabilities. - Built using Bun, a modern JavaScript runtime. - Simple command-line interface for ease of use.
  1. Locating PostgreSQL databases for MCP server management.
  2. Assisting developers in database integration tasks.
  3. Streamlining database discovery processes in development environments.

Add to your AI client

Use these steps to connect MCP Server PostgreDB Finder in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-postgredb-finder-nzkdevsaider": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-postgredb-finder-nzkdevsaider"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-postgredb-finder-nzkdevsaider": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-postgredb-finder-nzkdevsaider"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-postgredb-finder-nzkdevsaider": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-postgredb-finder-nzkdevsaider"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-postgredb-finder-nzkdevsaider": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-postgredb-finder-nzkdevsaider"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-postgredb-finder-nzkdevsaider": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-postgredb-finder-nzkdevsaider"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-postgredb-finder-nzkdevsaider": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-postgredb-finder-nzkdevsaider"
      ]
    }
  }
}

FAQ

What is Bun?

Bun is a fast all-in-one JavaScript runtime that allows for quick development and execution of JavaScript applications.

Is MCP Server PostgreDB Finder free to use?

Yes! The tool is open-source and available for anyone to use.

What programming language is used in this project?

The project is developed in JavaScript.