@johnroshan/universal-db-mcp 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +46 -41
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  import { Server } from "@modelcontextprotocol/sdk/server/index.js";
4
4
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
package/package.json CHANGED
@@ -1,42 +1,47 @@
1
1
  {
2
- "name": "@johnroshan/universal-db-mcp",
3
- "version": "1.0.0",
4
- "description": "MCP server for PostgreSQL and MySQL databases - enables Claude to query your databases",
5
- "main": "index.js",
6
- "type": "module",
7
- "bin": {
8
- "universal-db-mcp": "./index.js"
9
- },
10
- "scripts": {
11
- "start": "node index.js"
12
- },
13
- "keywords": [
14
- "mcp",
15
- "model-context-protocol",
16
- "claude",
17
- "database",
18
- "postgresql",
19
- "mysql",
20
- "sql",
21
- "ai",
22
- "llm"
23
- ],
24
- "author": "John Roshan <johnroshan2255@gmail.com>",
25
- "license": "MIT",
26
- "repository": {
27
- "type": "git",
28
- "url": "https://github.com/johnroshan2255/universal-db-mcp.git"
29
- },
30
- "engines": {
31
- "node": ">=18.0.0"
32
- },
33
- "files": ["index.js", "README.md", "LICENCE"],
34
- "dependencies": {
35
- "@modelcontextprotocol/sdk": "^1.25.1",
36
- "pg": "^8.13.1",
37
- "mysql2": "^3.11.5"
38
- },
39
- "devDependencies": {
40
- "eslint": "^9.17.0"
41
- }
42
- }
2
+ "name": "@johnroshan/universal-db-mcp",
3
+ "version": "1.0.1",
4
+ "description": "MCP server for PostgreSQL and MySQL databases - enables Claude to query your databases",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "universal-db-mcp": "./index.js"
9
+ },
10
+ "scripts": {
11
+ "start": "node index.js"
12
+ },
13
+ "keywords": [
14
+ "mcp",
15
+ "model-context-protocol",
16
+ "claude",
17
+ "database",
18
+ "postgresql",
19
+ "mysql",
20
+ "sql",
21
+ "ai",
22
+ "llm"
23
+ ],
24
+ "author": "John Roshan <johnroshan2255@gmail.com>",
25
+ "license": "MIT",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/johnroshan2255/universal-db-mcp.git"
29
+ },
30
+ "homepage": "https://github.com/johnroshan2255/universal-db-mcp#readme",
31
+ "engines": {
32
+ "node": ">=18.0.0"
33
+ },
34
+ "files": [
35
+ "index.js",
36
+ "README.md",
37
+ "LICENCE"
38
+ ],
39
+ "dependencies": {
40
+ "@modelcontextprotocol/sdk": "^1.25.1",
41
+ "pg": "^8.13.1",
42
+ "mysql2": "^3.11.5"
43
+ },
44
+ "devDependencies": {
45
+ "eslint": "^9.17.0"
46
+ }
47
+ }