midnight-wallet-cli 0.1.9 → 0.1.11
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 +12 -11
- package/dist/mcp-server.js +130 -125
- package/dist/wallet.js +215 -163
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -91,8 +91,7 @@ Create `.mcp.json` in your project root:
|
|
|
91
91
|
{
|
|
92
92
|
"mcpServers": {
|
|
93
93
|
"midnight-wallet": {
|
|
94
|
-
"command": "
|
|
95
|
-
"args": ["-y", "midnight-wallet-cli@latest", "--mcp"]
|
|
94
|
+
"command": "midnight-wallet-mcp"
|
|
96
95
|
}
|
|
97
96
|
}
|
|
98
97
|
}
|
|
@@ -106,8 +105,7 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS)
|
|
|
106
105
|
{
|
|
107
106
|
"mcpServers": {
|
|
108
107
|
"midnight-wallet": {
|
|
109
|
-
"command": "
|
|
110
|
-
"args": ["-y", "midnight-wallet-cli@latest", "--mcp"]
|
|
108
|
+
"command": "midnight-wallet-mcp"
|
|
111
109
|
}
|
|
112
110
|
}
|
|
113
111
|
}
|
|
@@ -121,8 +119,7 @@ Create `.cursor/mcp.json` in your project root:
|
|
|
121
119
|
{
|
|
122
120
|
"mcpServers": {
|
|
123
121
|
"midnight-wallet": {
|
|
124
|
-
"command": "
|
|
125
|
-
"args": ["-y", "midnight-wallet-cli@latest", "--mcp"]
|
|
122
|
+
"command": "midnight-wallet-mcp"
|
|
126
123
|
}
|
|
127
124
|
}
|
|
128
125
|
}
|
|
@@ -137,8 +134,7 @@ Create `.vscode/mcp.json` in your project root:
|
|
|
137
134
|
"servers": {
|
|
138
135
|
"midnight-wallet": {
|
|
139
136
|
"type": "stdio",
|
|
140
|
-
"command": "
|
|
141
|
-
"args": ["-y", "midnight-wallet-cli@latest", "--mcp"]
|
|
137
|
+
"command": "midnight-wallet-mcp"
|
|
142
138
|
}
|
|
143
139
|
}
|
|
144
140
|
}
|
|
@@ -152,14 +148,13 @@ Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
|
152
148
|
{
|
|
153
149
|
"mcpServers": {
|
|
154
150
|
"midnight-wallet": {
|
|
155
|
-
"command": "
|
|
156
|
-
"args": ["-y", "midnight-wallet-cli@latest", "--mcp"]
|
|
151
|
+
"command": "midnight-wallet-mcp"
|
|
157
152
|
}
|
|
158
153
|
}
|
|
159
154
|
}
|
|
160
155
|
```
|
|
161
156
|
|
|
162
|
-
> **Tip:** If you installed globally
|
|
157
|
+
> **Tip:** If you haven't installed globally, use `"command": "npx"` with `"args": ["-y", "midnight-wallet-cli@latest", "--mcp"]` instead.
|
|
163
158
|
|
|
164
159
|
### Available MCP Tools
|
|
165
160
|
|
|
@@ -185,6 +180,12 @@ Once connected, your AI agent gets access to 17 tools:
|
|
|
185
180
|
| `midnight_localnet_status` | Show service status |
|
|
186
181
|
| `midnight_localnet_clean` | Remove conflicting containers |
|
|
187
182
|
|
|
183
|
+
## Issues & Feedback
|
|
184
|
+
|
|
185
|
+
Found a bug or have a feature request? [Open an issue](https://github.com/nel349/midnight-wallet-cli-hub/issues) on the public hub repo.
|
|
186
|
+
|
|
187
|
+
For documentation, guides, and more: [midnight-wallet-cli-hub](https://github.com/nel349/midnight-wallet-cli-hub)
|
|
188
|
+
|
|
188
189
|
## Requirements
|
|
189
190
|
|
|
190
191
|
- Node.js >= 20
|