@softtechai/quickmcp 1.1.0 → 1.1.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.
- package/README.md +3 -3
- package/package.json +2 -2
- package/quickmcp-direct-stdio.js +12 -5
package/README.md
CHANGED
|
@@ -479,7 +479,7 @@ QuickMCP, NPM üzerinden çalıştırıldığında artık varsayılan olarak web
|
|
|
479
479
|
### Hızlı başlatma
|
|
480
480
|
|
|
481
481
|
```bash
|
|
482
|
-
npx -y @
|
|
482
|
+
npx -y @softtechai/quickmcp
|
|
483
483
|
# UI -> http://localhost:3000
|
|
484
484
|
# Integrated MCP sidecar -> :3001
|
|
485
485
|
```
|
|
@@ -493,7 +493,7 @@ npx -y @softtech/quickmcp
|
|
|
493
493
|
Örnek:
|
|
494
494
|
|
|
495
495
|
```bash
|
|
496
|
-
npx -y @
|
|
496
|
+
npx -y @softtechai/quickmcp --port=4000 --data-dir=./data
|
|
497
497
|
```
|
|
498
498
|
|
|
499
499
|
### Ortam değişkenleri
|
|
@@ -506,7 +506,7 @@ npx -y @softtech/quickmcp --port=4000 --data-dir=./data
|
|
|
506
506
|
Örnek:
|
|
507
507
|
|
|
508
508
|
```bash
|
|
509
|
-
PORT=4000 QUICKMCP_DATA_DIR=./data npx -y @
|
|
509
|
+
PORT=4000 QUICKMCP_DATA_DIR=./data npx -y @softtechai/quickmcp
|
|
510
510
|
```
|
|
511
511
|
|
|
512
512
|
> Not: Web UI, stdio tabanlı MCP sunucusunun yanında yan servis olarak çalışır; Claude Desktop entegrasyonu ile çakışmaz.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softtechai/quickmcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "An application to generate MCP servers from various data sources and test them",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"better-sqlite3": "^12.4.1",
|
|
41
41
|
"cors": "^2.8.5",
|
|
42
42
|
"csv-parser": "^3.0.0",
|
|
43
|
+
"dotenv": "^16.4.5",
|
|
43
44
|
"exceljs": "^4.4.0",
|
|
44
45
|
"express": "^4.18.0",
|
|
45
46
|
"imapflow": "^1.2.6",
|
|
@@ -63,7 +64,6 @@
|
|
|
63
64
|
"@types/ws": "^8.5.0",
|
|
64
65
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
65
66
|
"@typescript-eslint/parser": "^6.0.0",
|
|
66
|
-
"dotenv": "^16.4.5",
|
|
67
67
|
"eslint": "^8.0.0",
|
|
68
68
|
"tsx": "^4.0.0",
|
|
69
69
|
"typescript": "^5.0.0"
|
package/quickmcp-direct-stdio.js
CHANGED
|
@@ -4,12 +4,19 @@ const path = require('path');
|
|
|
4
4
|
const fs = require('fs');
|
|
5
5
|
const os = require('os');
|
|
6
6
|
const net = require('net');
|
|
7
|
-
|
|
7
|
+
let dotenv = null;
|
|
8
|
+
try {
|
|
9
|
+
dotenv = require('dotenv');
|
|
10
|
+
} catch (_) {
|
|
11
|
+
dotenv = null;
|
|
12
|
+
}
|
|
8
13
|
|
|
9
|
-
|
|
10
|
-
//
|
|
11
|
-
|
|
12
|
-
dotenv.config();
|
|
14
|
+
if (dotenv) {
|
|
15
|
+
// Load .env from script directory first (works with Claude Desktop custom CWD),
|
|
16
|
+
// then fallback to process CWD.
|
|
17
|
+
dotenv.config({ path: path.join(__dirname, '.env') });
|
|
18
|
+
dotenv.config();
|
|
19
|
+
}
|
|
13
20
|
|
|
14
21
|
let logger;
|
|
15
22
|
try {
|