@debugelectron/debug-electron-mcp 1.6.7 → 1.6.9

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 CHANGED
@@ -1,11 +1,21 @@
1
1
  # Debug Electron MCP
2
2
 
3
- [![GitHub license](https://img.shields.io/github/license/TheDarkSkyXD/debug-electron-mcp)](https://github.com/TheDarkSkyXD/debug-electron-mcp/blob/master/LICENSE)
3
+ [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
4
4
  [![npm version](https://img.shields.io/npm/v/@debugelectron/debug-electron-mcp)](https://www.npmjs.com/package/@debugelectron/debug-electron-mcp)
5
5
  [![MCP](https://img.shields.io/badge/MCP-Model%20Context%20Protocol-blue)](https://modelcontextprotocol.io)
6
6
 
7
7
  A powerful Model Context Protocol (MCP) server that provides comprehensive Electron application automation, debugging, and observability capabilities. Supercharge your Electron development workflow with AI-powered automation through Chrome DevTools Protocol integration.
8
8
 
9
+ ## 🎯 What Makes This Special
10
+
11
+ Transform your Electron development experience with **AI-powered automation**:
12
+
13
+ - **🔄 Real-time UI Automation**: Click buttons, fill forms, and interact with any Electron app programmatically
14
+ - **📸 Visual Debugging**: Take screenshots and capture application state without interrupting development
15
+ - **🔍 Deep Inspection**: Extract DOM elements, application data, and performance metrics in real-time
16
+ - **⚡ DevTools Protocol Integration**: Universal compatibility with any Electron app - no modifications required
17
+ - **🚀 Development Observability**: Monitor logs, system info, and application behavior seamlessly
18
+
9
19
  ## 🚀 Key Features
10
20
 
11
21
  ### 🎮 Application Control & Automation
@@ -40,7 +50,7 @@ A powerful Model Context Protocol (MCP) server that provides comprehensive Elect
40
50
  "servers": {
41
51
  "electron": {
42
52
  "command": "npx",
43
- "args": ["-y", "@debugelectron/electron-mcp-server@latest"]
53
+ "args": ["-y", "@debugelectron/debug-electron-mcp@latest"]
44
54
  }
45
55
  }
46
56
  }
@@ -53,7 +63,7 @@ A powerful Model Context Protocol (MCP) server that provides comprehensive Elect
53
63
  "mcpServers": {
54
64
  "electron": {
55
65
  "command": "npx",
56
- "args": ["-y", "@debugelectron/electron-mcp-server@latest"]
66
+ "args": ["-y", "@debugelectron/debug-electron-mcp@latest"]
57
67
  }
58
68
  }
59
69
  }
@@ -65,7 +75,7 @@ A powerful Model Context Protocol (MCP) server that provides comprehensive Elect
65
75
  "mcpServers": {
66
76
  "electron": {
67
77
  "command": "npx",
68
- "args": ["-y", "@debugelectron/electron-mcp-server@latest"]
78
+ "args": ["-y", "@debugelectron/debug-electron-mcp@latest"]
69
79
  }
70
80
  }
71
81
  }
@@ -78,7 +88,7 @@ That's it! The server is ready to use.
78
88
  See [Quick Start](#-quick-start) above for MCP configuration. For global installation:
79
89
 
80
90
  ```bash
81
- npm install -g @debugelectron/electron-mcp-server
91
+ npm install -g @debugelectron/debug-electron-mcp
82
92
  ```
83
93
 
84
94
  ## Demo
@@ -91,15 +101,6 @@ See the Electron MCP Server in action:
91
101
 
92
102
  *Watch how easy it is to automate Electron applications with AI-powered MCP commands.*
93
103
 
94
- ## 🎯 What Makes This Special
95
-
96
- Transform your Electron development experience with **AI-powered automation**:
97
-
98
- - **🔄 Real-time UI Automation**: Click buttons, fill forms, and interact with any Electron app programmatically
99
- - **📸 Visual Debugging**: Take screenshots and capture application state without interrupting development
100
- - **🔍 Deep Inspection**: Extract DOM elements, application data, and performance metrics in real-time
101
- - **⚡ DevTools Protocol Integration**: Universal compatibility with any Electron app - no modifications required
102
- - **🚀 Development Observability**: Monitor logs, system info, and application behavior seamlessly
103
104
 
104
105
  ## ⚡ Enabling Remote Debugging (Required)
105
106
 
@@ -769,7 +770,7 @@ We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) f
769
770
 
770
771
  ## 📄 License
771
772
 
772
- MIT License - see [LICENSE](LICENSE) file for details.
773
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
773
774
 
774
775
  ## 🙌 Credits & Attribution
775
776
 
@@ -1,6 +1,5 @@
1
- import { CallToolRequestSchema } from '@modelcontextprotocol/sdk/types';
2
- import { z } from 'zod';
3
- export declare function handleToolCall(request: z.infer<typeof CallToolRequestSchema>): Promise<{
1
+ import { CallToolRequest } from '@modelcontextprotocol/sdk/types';
2
+ export declare function handleToolCall(request: CallToolRequest): Promise<{
4
3
  content: any[];
5
4
  isError: boolean;
6
5
  }>;