@minicor/mcp-server 2.0.1 → 2.0.2
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 -18
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -4,46 +4,48 @@
|
|
|
4
4
|
|
|
5
5
|
Desktop and browser RPA automation, workflow management, and AI-powered debugging for the Minicor platform -- all from **Cursor** or **Claude Code**.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Add to Claude Code
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
npm install -g @minicor/mcp-server
|
|
11
11
|
minicor-mcp-setup
|
|
12
|
+
claude mcp add minicor -- minicor-mcp
|
|
12
13
|
```
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
For headless environments:
|
|
15
|
+
## Add to Cursor
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
minicor-mcp-setup --cli
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
Restart Cursor to activate.
|
|
23
|
-
|
|
24
|
-
## How It Works
|
|
25
|
-
|
|
26
|
-
The setup writes this to `~/.cursor/mcp.json`:
|
|
17
|
+
Run the setup, then add to your Cursor MCP config (`~/.cursor/mcp.json`):
|
|
27
18
|
|
|
28
19
|
```json
|
|
29
20
|
{
|
|
30
21
|
"mcpServers": {
|
|
31
22
|
"minicor": {
|
|
32
|
-
"command": "
|
|
33
|
-
"args": ["/
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": ["-y", "@minicor/mcp-server"]
|
|
34
25
|
}
|
|
35
26
|
}
|
|
36
27
|
}
|
|
37
28
|
```
|
|
38
29
|
|
|
39
|
-
|
|
30
|
+
Or if you ran `minicor-mcp-setup`, it writes this automatically. Just restart Cursor.
|
|
31
|
+
|
|
32
|
+
## Setup
|
|
40
33
|
|
|
41
|
-
|
|
34
|
+
```bash
|
|
35
|
+
npm install -g @minicor/mcp-server
|
|
36
|
+
minicor-mcp-setup
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
This opens a browser where you can **sign in** or **create an account**, set up workspaces, and optionally configure advanced services (Elasticsearch, CRON). Tokens are stored at `~/.minicor/tokens.json` and auto-refresh.
|
|
40
|
+
|
|
41
|
+
For headless environments:
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
|
|
44
|
+
minicor-mcp-setup --cli
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
+
No API keys needed -- authentication is handled by your stored session token.
|
|
48
|
+
|
|
47
49
|
## Features
|
|
48
50
|
|
|
49
51
|
- **Workspaces** -- list, inspect, manage workspace members
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minicor/mcp-server",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Desktop and browser RPA automation, workflow management, and AI-powered debugging for the Minicor platform. Formerly Laminar.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
+
"mcp-server": "dist/index.js",
|
|
8
9
|
"minicor-mcp": "dist/index.js",
|
|
9
10
|
"minicor-mcp-setup": "dist/setup.js",
|
|
10
11
|
"minicor": "dist/cli.js",
|