MCP server intelligence profile

PostgreSQL MCP Server (Cloudflare Worker) MCP Server

A Model Context Protocol server deployed on Cloudflare Workers that enables interaction with PostgreSQL databases. It allows AI clients like Claude and Cursor to execute database operations via a remote SSE connection

Local OnlyEmilyThaHuman
Awaiting current scanNpm · 1.0.2

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
10Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install postgres-mcp-server from npm

Version 1.0.2 declares 1 executable entrypoint.

npm install --save-exact postgres-mcp-server@1.0.2
npx -y -p postgres-mcp-server@1.0.2 postgres-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "postgres-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "postgres-mcp-server@1.0.2",
        "postgres-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugpostgresql-mcp-server-cloudflare-worker-284b7f1dDeploymentLocal Only
Canonical packagenpm:postgres-mcp-serverRepositoryEmilyThaHuman/postgres-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmpostgres-mcp-server1.0.21Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmpostgres-mcp-server1.0.2CurrentSep 5, 202610 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2024-11-05Negotiated protocol
postgres-mcp-serverServer-reported name
1Capability groups
Aug 18, 2026Observed

Tools 10

ToolCategoryAnnotationsRisk
describe_tableGet the structure of a database table
Input schema
{
  "type": "object",
  "properties": {
    "schema": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    },
    "table": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    }
  },
  "required": [
    "schema",
    "table"
  ],
  "additionalProperties": false
}
explain_queryGet query execution plan (EXPLAIN)
Input schema
{
  "type": "object",
  "properties": {
    "sql": {
      "type": "string",
      "minLength": 1,
      "maxLength": 50000
    },
    "analyze": {
      "type": "boolean"
    },
    "buffers": {
      "type": "boolean"
    },
    "costs": {
      "type": "boolean"
    },
    "format": {
      "type": "string",
      "enum": [
        "text",
        "json",
        "xml",
        "yaml"
      ]
    }
  },
  "required": [
    "sql"
  ],
  "additionalProperties": false
}
get_constraintsGet constraints for a table
Input schema
{
  "type": "object",
  "properties": {
    "schema": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    },
    "table": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    }
  },
  "required": [
    "schema",
    "table"
  ],
  "additionalProperties": false
}
get_table_statsGet table statistics and size information
Input schema
{
  "type": "object",
  "properties": {
    "schema": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    },
    "table": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    }
  },
  "required": [
    "schema"
  ],
  "additionalProperties": false
}
list_functionsList functions and procedures in a schema
Input schema
{
  "type": "object",
  "properties": {
    "schema": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    }
  },
  "additionalProperties": false
}
list_indexesList indexes for a table or schema
Input schema
{
  "type": "object",
  "properties": {
    "schema": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    },
    "table": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    }
  },
  "required": [
    "schema"
  ],
  "additionalProperties": false
}
list_schemasList all schemas in the database
Input schema
{
  "type": "object",
  "properties": {
    "includeSystemSchemas": {
      "type": "boolean"
    }
  },
  "additionalProperties": false
}
list_tablesList all tables in a schema
Input schema
{
  "type": "object",
  "properties": {
    "schema": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    }
  },
  "additionalProperties": false
}
list_viewsList views in a schema
Input schema
{
  "type": "object",
  "properties": {
    "schema": {
      "type": "string",
      "minLength": 1,
      "maxLength": 63,
      "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
    }
  },
  "additionalProperties": false
}
queryExecute SQL queries with pagination support and parameterization for security. Supports page sizes up to 500 rows.
Input schema
{
  "type": "object",
  "properties": {
    "sql": {
      "type": "string",
      "minLength": 1,
      "maxLength": 50000
    },
    "parameters": {
      "type": "array",
      "items": {
        "type": [
          "string",
          "number",
          "boolean",
          "null"
        ]
      },
      "description": "Optional array of parameters for parameterized queries"
    },
    "pageSize": {
      "type": "number",
      "minimum": 1,
      "maximum": 500,
      "description": "Number of rows to return (1-500, default: 100)"
    },
    "offset": {
      "type": "number",
      "minimum": 0,
      "description": "Number of rows to skip for pagination"
    }
  },
  "required": [
    "sql"
  ],
  "additionalProperties": false
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

PostgreSQL MCP Server (Cloudflare Worker) MCP Server questions

How do I install PostgreSQL MCP Server (Cloudflare Worker) MCP Server?

Install the selected package version with: npm install --save-exact postgres-mcp-server@1.0.2

What tools does PostgreSQL MCP Server (Cloudflare Worker) MCP Server provide?

PostgreSQL MCP Server (Cloudflare Worker) MCP Server exposed 10 tools during independent protocol observation, including describe_table, explain_query, get_constraints, get_table_stats, list_functions, list_indexes, list_schemas, list_tables, and others.

Is PostgreSQL MCP Server (Cloudflare Worker) MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Cloudflare intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

PostgreSQL MCP ServersDatabase MCP ServersOfficial vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.