Skip to content

Commit ede5034

Browse files
authored
feat(security): remove sql_query_delete and sql_query_update operations (#7)
1 parent 87a4c1a commit ede5034

File tree

6 files changed

+3
-53
lines changed

6 files changed

+3
-53
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,6 @@ DATABASE_URL=postgres://user:password@localhost:5432/db npx github:dwarvesf/mcp-
234234

235235
- `sql_query_read`: Execute SELECT queries
236236
- `sql_query_create`: Execute CREATE/INSERT statements
237-
- `sql_query_update`: Execute UPDATE statements
238-
- `sql_query_delete`: Execute DELETE statements
239237

240238
### DuckDB Tools
241239

src/handlers.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ export function createToolHandlers(pgPool: Pool | null, duckDBConn: DuckDBConnec
4242
}
4343

4444
case "sql_query_create":
45-
case "sql_query_read":
46-
case "sql_query_update":
47-
case "sql_query_delete": {
45+
case "sql_query_read": {
4846
if (!pgPool) {
4947
throw new Error("PostgreSQL connection not initialized");
5048
}

src/tools/index.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
import { sqlQueryCreateTool, sqlQueryReadTool, sqlQueryUpdateTool, sqlQueryDeleteTool } from './sql/index.js';
1+
import { sqlQueryCreateTool, sqlQueryReadTool } from './sql/index.js';
22
import { duckDBReadTool } from './duckdb/index.js';
33
import { gcsDirectoryTreeTool } from './gcs/index.js';
44

55
export const tools = [
66
sqlQueryCreateTool,
77
sqlQueryReadTool,
8-
sqlQueryUpdateTool,
9-
sqlQueryDeleteTool,
108
duckDBReadTool,
119
gcsDirectoryTreeTool
1210
];

src/tools/sql/delete.ts

-21
This file was deleted.

src/tools/sql/index.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
export { sqlQueryCreateTool } from './create.js';
2-
export { sqlQueryReadTool } from './read.js';
3-
export { sqlQueryUpdateTool } from './update.js';
4-
export { sqlQueryDeleteTool } from './delete.js';
2+
export { sqlQueryReadTool } from './read.js';

src/tools/sql/update.ts

-21
This file was deleted.

0 commit comments

Comments
 (0)