@coo-quack/calc-mcp 1.8.6 → 1.9.1
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 +25 -0
- package/dist/index.js +60 -60
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -183,6 +183,31 @@ Add to `.vscode/mcp.json` in your workspace:
|
|
|
183
183
|
}
|
|
184
184
|
```
|
|
185
185
|
|
|
186
|
+
### Docker Image
|
|
187
|
+
|
|
188
|
+
Calc MCP is available as a Docker image from GitHub Container Registry:
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
docker run --rm -i ghcr.io/coo-quack/calc-mcp:latest
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
Or use in MCP client config:
|
|
195
|
+
|
|
196
|
+
```json
|
|
197
|
+
{
|
|
198
|
+
"mcpServers": {
|
|
199
|
+
"calc-mcp": {
|
|
200
|
+
"command": "docker",
|
|
201
|
+
"args": ["run", "--rm", "-i", "ghcr.io/coo-quack/calc-mcp:latest"]
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
Available tags:
|
|
208
|
+
- `ghcr.io/coo-quack/calc-mcp:latest` — Latest release
|
|
209
|
+
- `ghcr.io/coo-quack/calc-mcp:X.Y.Z` — Specific version (replace X.Y.Z with the desired version)
|
|
210
|
+
|
|
186
211
|
### Other MCP Clients
|
|
187
212
|
|
|
188
213
|
Calc MCP works with any MCP-compatible client. Run the server via stdio:
|