copilot-money-mcp 1.2.2 → 1.2.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 +24 -0
- package/dist/cli.js +12852 -6977
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -65,6 +65,30 @@ Then add to your Claude Desktop configuration (`~/Library/Application Support/Cl
|
|
|
65
65
|
}
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
+
### Installation for Cursor
|
|
69
|
+
|
|
70
|
+
1. Install the package globally:
|
|
71
|
+
```bash
|
|
72
|
+
npm install -g copilot-money-mcp
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
2. Open Cursor Settings (`Cmd + ,`)
|
|
76
|
+
|
|
77
|
+
3. Search for "MCP" or go to **Features > MCP Servers**
|
|
78
|
+
|
|
79
|
+
4. Add the server configuration:
|
|
80
|
+
```json
|
|
81
|
+
{
|
|
82
|
+
"mcpServers": {
|
|
83
|
+
"copilot-money": {
|
|
84
|
+
"command": "copilot-money-mcp"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
5. Done
|
|
91
|
+
|
|
68
92
|
### Manual Installation for Development
|
|
69
93
|
|
|
70
94
|
```bash
|