@1claw/mcp 0.16.2 → 0.16.8
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 +2 -0
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ An MCP (Model Context Protocol) server that gives AI agents secure, just-in-time
|
|
|
4
4
|
|
|
5
5
|
**Local-only mode**: Run without vault credentials for security-only tools (e.g., `inspect_content`). Ideal for users running local models (Ollama, LM Studio, llama.cpp) who want prompt injection and threat detection without a 1claw account.
|
|
6
6
|
|
|
7
|
+
**API contract:** Vault-facing tools use the REST API described in [@1claw/openapi-spec](https://www.npmjs.com/package/@1claw/openapi-spec). LLM traffic through **Shroud** is not MCP — agents call `https://shroud.1claw.xyz` directly with `X-Shroud-Agent-Key` and **`X-Shroud-Provider`** (required; e.g. `openai`). When the MCP server exchanges an agent API key for a JWT, that token may carry **`shroud_config`** for Shroud’s PolicyEngine; MCP itself does not proxy LLM requests.
|
|
8
|
+
|
|
7
9
|
## Transport Modes
|
|
8
10
|
|
|
9
11
|
The server supports two transport modes:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1claw/mcp",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.8",
|
|
4
4
|
"description": "MCP server for the 1claw secrets vault — lets AI agents fetch, store, and manage secrets at runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -55,7 +55,13 @@
|
|
|
55
55
|
"homepage": "https://1claw.xyz",
|
|
56
56
|
"license": "MIT",
|
|
57
57
|
"dependencies": {
|
|
58
|
+
"@hono/node-server": "^1.19.10",
|
|
59
|
+
"express-rate-limit": "^8.2.2",
|
|
58
60
|
"fastmcp": "^3.33.0",
|
|
61
|
+
"glob": "^11.1.0",
|
|
62
|
+
"hono": "^4.12.4",
|
|
63
|
+
"koa": "^3.1.2",
|
|
64
|
+
"undici": "^7.24.0",
|
|
59
65
|
"zod": "^3.24.0"
|
|
60
66
|
},
|
|
61
67
|
"devDependencies": {
|