wolfpack-mcp 1.0.55 → 1.0.57
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ Restart Claude Desktop. You'll be prompted to sign in with your Wolfpack account
|
|
|
51
51
|
"mcpServers": {
|
|
52
52
|
"wolfpack": {
|
|
53
53
|
"command": "npx",
|
|
54
|
-
"args": ["-y", "wolfpack-mcp"],
|
|
54
|
+
"args": ["-y", "wolfpack-mcp@latest"],
|
|
55
55
|
"env": {
|
|
56
56
|
"WOLFPACK_API_KEY": "wfp_sk_your_api_key_here"
|
|
57
57
|
}
|
package/dist/index.js
CHANGED
|
@@ -575,7 +575,7 @@ const AddDiscussionCommentSchema = z.object({
|
|
|
575
575
|
.describe('Parent comment ID for threaded replies (omit for top-level)'),
|
|
576
576
|
});
|
|
577
577
|
// Fields containing user-defined data that should never be recursively processed.
|
|
578
|
-
const PASSTHROUGH_FIELDS = new Set(['formDefinition', 'formValues']);
|
|
578
|
+
const PASSTHROUGH_FIELDS = new Set(['formDefinition', 'formValues', 'formContent']);
|
|
579
579
|
// Strip UUID v4 fields from response objects so agents use refId/slug instead.
|
|
580
580
|
// Preserves Clerk user IDs (user_xxx format) and operational fields (categoryId, radarItemId).
|
|
581
581
|
function stripUuids(obj) {
|