@just-every/mcp-read-website-fast 0.1.14 → 0.1.15
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/dist/serve-restart.js +4 -1
- package/package.json +2 -2
package/dist/serve-restart.js
CHANGED
|
@@ -37,10 +37,13 @@ const startServer = () => {
|
|
|
37
37
|
log('INFO', 'Starting MCP server...');
|
|
38
38
|
const serverPath = join(__dirname, 'serve.js');
|
|
39
39
|
const child = spawn(process.execPath, [serverPath], {
|
|
40
|
-
stdio: 'inherit',
|
|
40
|
+
stdio: ['inherit', 'inherit', 'pipe'],
|
|
41
41
|
env: process.env,
|
|
42
42
|
});
|
|
43
43
|
let shuttingDown = false;
|
|
44
|
+
child.stderr?.on('data', (data) => {
|
|
45
|
+
process.stderr.write(data);
|
|
46
|
+
});
|
|
44
47
|
let restartTimer = null;
|
|
45
48
|
const startupTimer = setTimeout(() => {
|
|
46
49
|
log('INFO', 'Server started successfully');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@just-every/mcp-read-website-fast",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Markdown Content Preprocessor - Fetch web pages, extract content, convert to clean Markdown",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"homepage": "https://github.com/just-every/mcp-read-website-fast#readme",
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@just-every/crawl": "^1.0.
|
|
53
|
+
"@just-every/crawl": "^1.0.4",
|
|
54
54
|
"@modelcontextprotocol/sdk": "^1.12.3",
|
|
55
55
|
"commander": "^14.0.0"
|
|
56
56
|
},
|