chatgpt-local-mcp 1.0.1 → 1.0.3
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 +20 -0
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -6,6 +6,26 @@ Give ChatGPT (or any MCP client) full control of your local machine — read and
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## Screenshots
|
|
10
|
+
|
|
11
|
+
**1. Start the server — tunnel URL is printed automatically**
|
|
12
|
+
|
|
13
|
+

|
|
14
|
+
|
|
15
|
+
**2. Paste the URL into ChatGPT**
|
|
16
|
+
|
|
17
|
+

|
|
18
|
+
|
|
19
|
+
**3. ChatGPT uses your tools**
|
|
20
|
+
|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
**4. Web dashboard**
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
9
29
|
## How it works
|
|
10
30
|
|
|
11
31
|
1. Run `chatgpt-local-mcp` (or `npm start`) in any folder
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chatgpt-local-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Give ChatGPT (or any MCP client) agentic access to your local project folder — filesystem, terminal, git, processes, clipboard, archives and more — over a secure cloudflared tunnel. Folder-scoped by default for security.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/server.js",
|
|
@@ -16,6 +16,11 @@
|
|
|
16
16
|
"dev": "node --watch src/server.js"
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
|
+
"homepage": "https://github.com/darkness0308/chatgpt-local-mcp#readme",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/darkness0308/chatgpt-local-mcp.git"
|
|
23
|
+
},
|
|
19
24
|
"files": [
|
|
20
25
|
"bin",
|
|
21
26
|
"scripts",
|