@qikdev/mcp 6.8.7 → 6.8.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/tools/create.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAI1D,eAAO,MAAM,iBAAiB,EAAE,
|
|
1
|
+
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/tools/create.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAI1D,eAAO,MAAM,iBAAiB,EAAE,IA+C/B,CAAC;AAEF,wBAAsB,mBAAmB,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC,CA2DhH"}
|
|
@@ -8,24 +8,27 @@ export const createContentTool = {
|
|
|
8
8
|
|
|
9
9
|
**Required:**
|
|
10
10
|
- typeKey: The content type key (e.g., 'article', 'profile', 'event')
|
|
11
|
+
- fields: Object containing the content field values
|
|
11
12
|
|
|
12
|
-
All
|
|
13
|
+
All content field values go inside the \`fields\` object.
|
|
13
14
|
The MCP server will automatically validate and coerce values based on the content type's schema.
|
|
14
15
|
|
|
15
16
|
**Tags Shorthand:**
|
|
16
|
-
Pass \`tags: ['green', 'red']\` as string names and the backend auto-creates tags.
|
|
17
|
+
Pass \`tags: ['green', 'red']\` inside fields as string names and the backend auto-creates tags.
|
|
17
18
|
|
|
18
19
|
**Scope:**
|
|
19
|
-
Set \`meta
|
|
20
|
+
Set \`meta: { scopes: ['scopeId'] }\` inside fields to specify which scope(s) the content belongs to.
|
|
20
21
|
|
|
21
22
|
**Example:**
|
|
22
23
|
\`\`\`json
|
|
23
24
|
{
|
|
24
25
|
"typeKey": "article",
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
26
|
+
"fields": {
|
|
27
|
+
"title": "My Article",
|
|
28
|
+
"tags": ["featured", "news"],
|
|
29
|
+
"meta": {
|
|
30
|
+
"scopes": ["scopeId123"]
|
|
31
|
+
}
|
|
29
32
|
}
|
|
30
33
|
}
|
|
31
34
|
\`\`\``,
|
|
@@ -36,14 +39,13 @@ Set \`meta.scopes: ['scopeId']\` to specify which scope(s) the content belongs t
|
|
|
36
39
|
type: "string",
|
|
37
40
|
description: "The content type key (e.g., 'article', 'profile')"
|
|
38
41
|
},
|
|
39
|
-
|
|
40
|
-
type: "
|
|
41
|
-
|
|
42
|
-
|
|
42
|
+
fields: {
|
|
43
|
+
type: "object",
|
|
44
|
+
description: "The content field values to create (e.g., title, body, tags, meta, etc.). Tags shorthand: pass tags as string names. Scope: set meta.scopes.",
|
|
45
|
+
additionalProperties: true
|
|
43
46
|
}
|
|
44
47
|
},
|
|
45
|
-
required: ["typeKey"],
|
|
46
|
-
additionalProperties: true
|
|
48
|
+
required: ["typeKey", "fields"],
|
|
47
49
|
},
|
|
48
50
|
};
|
|
49
51
|
export async function handleCreateContent(args) {
|
|
@@ -53,10 +55,20 @@ export async function handleCreateContent(args) {
|
|
|
53
55
|
if (!config) {
|
|
54
56
|
throw new Error('Qik MCP server not configured. Run setup first.');
|
|
55
57
|
}
|
|
56
|
-
const { typeKey,
|
|
58
|
+
const { typeKey, fields } = args;
|
|
57
59
|
if (!typeKey) {
|
|
58
60
|
throw new Error('typeKey is required');
|
|
59
61
|
}
|
|
62
|
+
// Primary: use nested fields object
|
|
63
|
+
// Fallback: top-level spread for non-Claude-Code MCP clients that respect additionalProperties
|
|
64
|
+
let rawPayload;
|
|
65
|
+
if (fields && typeof fields === 'object') {
|
|
66
|
+
rawPayload = fields;
|
|
67
|
+
}
|
|
68
|
+
else {
|
|
69
|
+
const { typeKey: _t, fields: _f, ...topLevelFields } = args;
|
|
70
|
+
rawPayload = topLevelFields;
|
|
71
|
+
}
|
|
60
72
|
// Coerce payload using content type schema (fixes stringified JSON from LLMs)
|
|
61
73
|
const validation = await validateAndCoercePayload(typeKey, rawPayload);
|
|
62
74
|
const response = await fetch(`${config.apiUrl || 'https://api.qik.dev'}/content/${typeKey}/create`, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../src/tools/create.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAEjE,MAAM,CAAC,MAAM,iBAAiB,GAAS;IACrC,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE
|
|
1
|
+
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../src/tools/create.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../../src/tools/update.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAI1D,eAAO,MAAM,iBAAiB,EAAE,
|
|
1
|
+
{"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../../src/tools/update.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAI1D,eAAO,MAAM,iBAAiB,EAAE,IAyD/B,CAAC;AAEF,wBAAsB,mBAAmB,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC,CAqEhH"}
|
|
@@ -4,28 +4,33 @@ export const updateContentTool = {
|
|
|
4
4
|
name: "update_content",
|
|
5
5
|
description: `Update existing content items in Qik.
|
|
6
6
|
|
|
7
|
+
**IMPORTANT:** Always call \`get_content\` first to fetch the current state before updating. This ensures you have the latest field values and prevents accidentally overwriting data. Apply your changes to the fetched data, then pass the updated fields.
|
|
8
|
+
|
|
7
9
|
**Endpoint:** PATCH /content/:contentId (partial update) or PUT /content/:contentId (full replacement)
|
|
8
10
|
|
|
9
11
|
**Required:**
|
|
10
12
|
- contentId: The ID of the content item to update
|
|
13
|
+
- fields: Object containing the field values to update
|
|
11
14
|
|
|
12
15
|
**Optional:**
|
|
13
16
|
- updateMethod: "patch" (default) for partial updates, "put" for full replacement
|
|
14
17
|
- typeKey: Content type key for schema validation (e.g., 'article', 'profile'). If provided, payload will be validated and coerced against the schema.
|
|
15
18
|
|
|
16
|
-
All
|
|
19
|
+
All update field values go inside the \`fields\` object.
|
|
17
20
|
The MCP server will automatically validate and coerce values if typeKey is provided.
|
|
18
21
|
|
|
19
22
|
**Tags Shorthand:**
|
|
20
|
-
Pass \`tags: ['green', 'red']\` as string names and the backend auto-creates tags.
|
|
23
|
+
Pass \`tags: ['green', 'red']\` inside fields as string names and the backend auto-creates tags.
|
|
21
24
|
|
|
22
25
|
**Example:**
|
|
23
26
|
\`\`\`json
|
|
24
27
|
{
|
|
25
28
|
"contentId": "abc123",
|
|
26
29
|
"typeKey": "article",
|
|
27
|
-
"
|
|
28
|
-
|
|
30
|
+
"fields": {
|
|
31
|
+
"title": "Updated Title",
|
|
32
|
+
"tags": ["featured", "breaking"]
|
|
33
|
+
}
|
|
29
34
|
}
|
|
30
35
|
\`\`\``,
|
|
31
36
|
inputSchema: {
|
|
@@ -43,10 +48,14 @@ Pass \`tags: ['green', 'red']\` as string names and the backend auto-creates tag
|
|
|
43
48
|
type: "string",
|
|
44
49
|
enum: ["patch", "put"],
|
|
45
50
|
description: "'patch' for partial updates (default), 'put' for full replacement"
|
|
51
|
+
},
|
|
52
|
+
fields: {
|
|
53
|
+
type: "object",
|
|
54
|
+
description: "The field values to update (e.g., title, body, tags, etc.)",
|
|
55
|
+
additionalProperties: true
|
|
46
56
|
}
|
|
47
57
|
},
|
|
48
|
-
required: ["contentId"],
|
|
49
|
-
additionalProperties: true
|
|
58
|
+
required: ["contentId", "fields"],
|
|
50
59
|
},
|
|
51
60
|
};
|
|
52
61
|
export async function handleUpdateContent(args) {
|
|
@@ -56,12 +65,21 @@ export async function handleUpdateContent(args) {
|
|
|
56
65
|
if (!config) {
|
|
57
66
|
throw new Error('Qik MCP server not configured. Run setup first.');
|
|
58
67
|
}
|
|
59
|
-
const { contentId, typeKey, updateMethod,
|
|
68
|
+
const { contentId, typeKey, updateMethod, fields } = args;
|
|
60
69
|
if (!contentId) {
|
|
61
70
|
throw new Error('contentId is required');
|
|
62
71
|
}
|
|
63
72
|
const method = (updateMethod || 'patch').toUpperCase();
|
|
64
|
-
|
|
73
|
+
// Primary: use nested fields object
|
|
74
|
+
// Fallback: top-level spread for non-Claude-Code MCP clients that respect additionalProperties
|
|
75
|
+
let rawPayload;
|
|
76
|
+
if (fields && typeof fields === 'object') {
|
|
77
|
+
rawPayload = fields;
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
const { contentId: _c, typeKey: _t, updateMethod: _u, fields: _f, ...topLevelFields } = args;
|
|
81
|
+
rawPayload = topLevelFields;
|
|
82
|
+
}
|
|
65
83
|
let payload;
|
|
66
84
|
// If typeKey is provided, coerce using schema (fixes stringified JSON from LLMs)
|
|
67
85
|
if (typeKey) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update.js","sourceRoot":"","sources":["../../../src/tools/update.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAEjE,MAAM,CAAC,MAAM,iBAAiB,GAAS;IACrC,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE
|
|
1
|
+
{"version":3,"file":"update.js","sourceRoot":"","sources":["../../../src/tools/update.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qikdev/mcp",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.8",
|
|
4
4
|
"description": "A plug-and-play Model Context Protocol server for the Qik platform - enabling AI assistants to interact with Qik's content management system, user management, forms, files, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|