Skip to content

Commit 08f175c

Browse files
committed
Update project metadata and improve documentation
- Rename project from "postgres-mcp" to "@henkey/postgres-mcp-server" and update version to 1.0.5 in package-lock.json. - Enhance README.md with updated installation instructions and a new cursor button link. - Remove unused type imports in enums.ts and indexes.ts for cleaner code.
1 parent e8e776e commit 08f175c

4 files changed

Lines changed: 10 additions & 12 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A Model Context Protocol (MCP) server that provides comprehensive PostgreSQL dat
77

88
## Quick Start
99

10-
[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=postgresql-mcp&config=JTdCJTIyY29tbWFuZCUyMiUzQSUyMm5weCUyMCU0MGhlbmtleSUyRnBvc3RncmVzLW1jcC1zZXJ2ZXIlMjAtLWNvbm5lY3Rpb24tc3RyaW5nJTIwcG9zdGdyZXNxbCUzQSUyRiUyRnVzZXIlM0FwYXNzd29yZCU0MGhvc3QlM0Fwb3J0JTJGZGF0YWJhc2UlMjIlN0Q%3D)
10+
[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=postgresql-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBoZW5rZXkvcG9zdGdyZXMtbWNwLXNlcnZlciIsIi0tY29ubmVjdGlvbi1zdHJpbmciLCJwb3N0Z3Jlc3FsOi8vdXNlcjpwYXNzd29yZEBob3N0OnBvcnQvZGF0YWJhc2UiXX0=)
1111

1212
### Option 1: npm (Recommended)
1313
```bash

package-lock.json

Lines changed: 9 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tools/enums.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ import type { PostgresTool, GetConnectionStringFn, ToolOutput } from '../types/t
88
import { McpError, ErrorCode } from '@modelcontextprotocol/sdk/types.js';
99

1010
// Define return type structure similar to schema.ts
11-
interface EnumResult {
12-
success: boolean;
13-
message: string;
14-
details: unknown;
15-
}
1611

1712
interface EnumInfo {
1813
enum_schema: string;

src/tools/indexes.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { DatabaseConnection } from '../utils/connection.js';
22
import { z } from 'zod';
33
import type { PostgresTool, GetConnectionStringFn, ToolOutput } from '../types/tool.js';
44
import { McpError, ErrorCode } from '@modelcontextprotocol/sdk/types.js';
5-
import type { PoolClient } from 'pg';
65

76
interface IndexInfo {
87
schemaname: string;

0 commit comments

Comments
 (0)