@coo-quack/calc-mcp 1.8.0 → 1.8.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 +32 -0
- package/dist/index.js +126 -126
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -203,6 +203,38 @@ bun run lint # Biome
|
|
|
203
203
|
bun run format # Biome
|
|
204
204
|
```
|
|
205
205
|
|
|
206
|
+
## Security
|
|
207
|
+
|
|
208
|
+
calc-mcp processes all data **locally** and does **not**:
|
|
209
|
+
|
|
210
|
+
- ❌ Send data to external servers
|
|
211
|
+
- ❌ Log data to files or remote services
|
|
212
|
+
- ❌ Store processed data persistently
|
|
213
|
+
|
|
214
|
+
**For detailed security information, see [SECURITY.md](SECURITY.md).**
|
|
215
|
+
|
|
216
|
+
### Safe Usage with LLMs
|
|
217
|
+
|
|
218
|
+
When using with LLM-based tools (Claude, GPT, etc.):
|
|
219
|
+
|
|
220
|
+
- ✅ **DO:** Use test/sample data when possible
|
|
221
|
+
- ✅ **DO:** Review LLM conversation history for accidental leaks
|
|
222
|
+
- ❌ **DON'T:** Pass API keys, passwords, or tokens directly as arguments
|
|
223
|
+
|
|
224
|
+
Example:
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
# ❌ Unsafe: API key exposed in command history
|
|
228
|
+
mcporter call calc-mcp.hash input="sk-1234567890abcdef" algorithm="sha256"
|
|
229
|
+
|
|
230
|
+
# ✅ Safe: Use placeholder or test data
|
|
231
|
+
mcporter call calc-mcp.hash input="my-test-string" algorithm="sha256"
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
**Note:** Error messages are automatically sanitized to prevent accidental data leakage.
|
|
235
|
+
|
|
236
|
+
For security issues, please see our [Security Policy](SECURITY.md#reporting-security-issues).
|
|
237
|
+
|
|
206
238
|
## License
|
|
207
239
|
|
|
208
240
|
MIT
|