Skip to content

Commit 1615fe4

Browse files
Merge pull request #1 from hyperdrive-eng/arthurgousset/feat/add-mcp
feat: add NodeJS debugger MCP server and simple package.json
2 parents bd919a5 + 3b32d0b commit 1615fe4

File tree

5 files changed

+2340
-0
lines changed

5 files changed

+2340
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

index.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env node
2+
3+
// This file serves as the entry point for the MCP debugger
4+
// When installed globally or run with npx, this file will be executed
5+
6+
// Import and run the MCP server
7+
import './src/mcp-server.js';
8+
9+
// The server is started in the imported file
10+
console.log('MCP Debugger started. Connected to Node.js Inspector protocol.');

0 commit comments

Comments
 (0)