@qikdev/mcp 6.7.2 → 6.7.6
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/build/src/tools/content.d.ts +29 -0
- package/build/src/tools/content.d.ts.map +1 -0
- package/build/src/tools/content.js +153 -0
- package/build/src/tools/content.js.map +1 -0
- package/build/src/tools/create.d.ts.map +1 -1
- package/build/src/tools/create.js +48 -634
- package/build/src/tools/create.js.map +1 -1
- package/build/src/tools/duplicates.d.ts +27 -0
- package/build/src/tools/duplicates.d.ts.map +1 -0
- package/build/src/tools/duplicates.js +142 -0
- package/build/src/tools/duplicates.js.map +1 -0
- package/build/src/tools/index.d.ts.map +1 -1
- package/build/src/tools/index.js +66 -0
- package/build/src/tools/index.js.map +1 -1
- package/build/src/tools/list.d.ts.map +1 -1
- package/build/src/tools/list.js +79 -323
- package/build/src/tools/list.js.map +1 -1
- package/build/src/tools/merge.d.ts +34 -0
- package/build/src/tools/merge.d.ts.map +1 -0
- package/build/src/tools/merge.js +192 -0
- package/build/src/tools/merge.js.map +1 -0
- package/build/src/tools/profile-access.d.ts +47 -0
- package/build/src/tools/profile-access.d.ts.map +1 -0
- package/build/src/tools/profile-access.js +264 -0
- package/build/src/tools/profile-access.js.map +1 -0
- package/build/src/tools/profile-relationships.d.ts +43 -0
- package/build/src/tools/profile-relationships.d.ts.map +1 -0
- package/build/src/tools/profile-relationships.js +270 -0
- package/build/src/tools/profile-relationships.js.map +1 -0
- package/build/src/tools/scope.d.ts +47 -0
- package/build/src/tools/scope.d.ts.map +1 -0
- package/build/src/tools/scope.js +263 -0
- package/build/src/tools/scope.js.map +1 -0
- package/build/src/tools/search.d.ts +19 -0
- package/build/src/tools/search.d.ts.map +1 -0
- package/build/src/tools/search.js +84 -0
- package/build/src/tools/search.js.map +1 -0
- package/build/src/tools/smartlist.d.ts +26 -0
- package/build/src/tools/smartlist.d.ts.map +1 -0
- package/build/src/tools/smartlist.js +126 -0
- package/build/src/tools/smartlist.js.map +1 -0
- package/build/src/tools/update.d.ts.map +1 -1
- package/build/src/tools/update.js +44 -345
- package/build/src/tools/update.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { ConfigManager } from "../config.js";
|
|
2
|
+
/**
|
|
3
|
+
* Global Search Tool
|
|
4
|
+
*
|
|
5
|
+
* Search across multiple content types simultaneously.
|
|
6
|
+
* Returns results grouped by content type.
|
|
7
|
+
*/
|
|
8
|
+
export const globalSearchTool = {
|
|
9
|
+
name: "global_search",
|
|
10
|
+
description: `Search across multiple content types simultaneously.
|
|
11
|
+
|
|
12
|
+
Returns results grouped by content type. Useful for finding any content when you don't know the exact type.
|
|
13
|
+
|
|
14
|
+
**Example:**
|
|
15
|
+
\`\`\`json
|
|
16
|
+
{
|
|
17
|
+
"keywords": "john smith",
|
|
18
|
+
"types": ["profile", "article"],
|
|
19
|
+
"limit": 10
|
|
20
|
+
}
|
|
21
|
+
\`\`\`
|
|
22
|
+
|
|
23
|
+
If types is not provided, searches common types: profile, article, event, campaign, etc.`,
|
|
24
|
+
inputSchema: {
|
|
25
|
+
type: "object",
|
|
26
|
+
properties: {
|
|
27
|
+
keywords: {
|
|
28
|
+
type: "string",
|
|
29
|
+
description: "Search terms"
|
|
30
|
+
},
|
|
31
|
+
types: {
|
|
32
|
+
type: "array",
|
|
33
|
+
items: { type: "string" },
|
|
34
|
+
description: "Content types to search (defaults to common types if empty)"
|
|
35
|
+
},
|
|
36
|
+
limit: {
|
|
37
|
+
type: "number",
|
|
38
|
+
description: "Max results per type (default: 10)"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
required: ["keywords"]
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
export async function handleGlobalSearch(args) {
|
|
45
|
+
try {
|
|
46
|
+
const configManager = new ConfigManager();
|
|
47
|
+
const config = await configManager.loadConfig();
|
|
48
|
+
if (!config) {
|
|
49
|
+
throw new Error('Qik MCP server not configured. Run setup first.');
|
|
50
|
+
}
|
|
51
|
+
const response = await fetch(`${config.apiUrl || 'https://api.qik.dev'}/search`, {
|
|
52
|
+
method: 'POST',
|
|
53
|
+
headers: {
|
|
54
|
+
'Authorization': `Bearer ${config.accessToken}`,
|
|
55
|
+
'Content-Type': 'application/json',
|
|
56
|
+
},
|
|
57
|
+
body: JSON.stringify({
|
|
58
|
+
keywords: args.keywords,
|
|
59
|
+
types: args.types || [],
|
|
60
|
+
limit: args.limit || 10
|
|
61
|
+
})
|
|
62
|
+
});
|
|
63
|
+
if (!response.ok) {
|
|
64
|
+
const errorText = await response.text();
|
|
65
|
+
throw new Error(`HTTP ${response.status}: ${errorText}`);
|
|
66
|
+
}
|
|
67
|
+
const data = await response.json();
|
|
68
|
+
return {
|
|
69
|
+
content: [{
|
|
70
|
+
type: "text",
|
|
71
|
+
text: JSON.stringify(data, null, 2)
|
|
72
|
+
}]
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
catch (error) {
|
|
76
|
+
return {
|
|
77
|
+
content: [{
|
|
78
|
+
type: "text",
|
|
79
|
+
text: JSON.stringify({ error: error.message }, null, 2)
|
|
80
|
+
}]
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
//# sourceMappingURL=search.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search.js","sourceRoot":"","sources":["../../../src/tools/search.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAE7C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAS;IACpC,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE;;;;;;;;;;;;;yFAa0E;IACvF,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,QAAQ,EAAE;gBACR,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,cAAc;aAC5B;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBACzB,WAAW,EAAE,6DAA6D;aAC3E;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,oCAAoC;aAClD;SACF;QACD,QAAQ,EAAE,CAAC,UAAU,CAAC;KACvB;CACF,CAAC;AAEF,MAAM,CAAC,KAAK,UAAU,kBAAkB,CAAC,IAIxC;IACC,IAAI,CAAC;QACH,MAAM,aAAa,GAAG,IAAI,aAAa,EAAE,CAAC;QAC1C,MAAM,MAAM,GAAG,MAAM,aAAa,CAAC,UAAU,EAAE,CAAC;QAEhD,IAAI,CAAC,MAAM,EAAE,CAAC;YACZ,MAAM,IAAI,KAAK,CAAC,iDAAiD,CAAC,CAAC;QACrE,CAAC;QAED,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,MAAM,CAAC,MAAM,IAAI,qBAAqB,SAAS,EAAE;YAC/E,MAAM,EAAE,MAAM;YACd,OAAO,EAAE;gBACP,eAAe,EAAE,UAAU,MAAM,CAAC,WAAW,EAAE;gBAC/C,cAAc,EAAE,kBAAkB;aACnC;YACD,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC;gBACnB,QAAQ,EAAE,IAAI,CAAC,QAAQ;gBACvB,KAAK,EAAE,IAAI,CAAC,KAAK,IAAI,EAAE;gBACvB,KAAK,EAAE,IAAI,CAAC,KAAK,IAAI,EAAE;aACxB,CAAC;SACH,CAAC,CAAC;QAEH,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;YACjB,MAAM,SAAS,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;YACxC,MAAM,IAAI,KAAK,CAAC,QAAQ,QAAQ,CAAC,MAAM,KAAK,SAAS,EAAE,CAAC,CAAC;QAC3D,CAAC;QAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;QAEnC,OAAO;YACL,OAAO,EAAE,CAAC;oBACR,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;iBACpC,CAAC;SACH,CAAC;IAEJ,CAAC;IAAC,OAAO,KAAU,EAAE,CAAC;QACpB,OAAO;YACL,OAAO,EAAE,CAAC;oBACR,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,OAAO,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC;iBACxD,CAAC;SACH,CAAC;IACJ,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Tool } from "@modelcontextprotocol/sdk/types.js";
|
|
2
|
+
/**
|
|
3
|
+
* Smartlist Tools
|
|
4
|
+
*
|
|
5
|
+
* Execute and export saved queries (Smart Lists).
|
|
6
|
+
* Smart Lists are reusable filtered views of content.
|
|
7
|
+
*/
|
|
8
|
+
export declare const runSmartlistTool: Tool;
|
|
9
|
+
export declare const exportSmartlistTool: Tool;
|
|
10
|
+
export declare function handleRunSmartlist(args: {
|
|
11
|
+
smartlistId: string;
|
|
12
|
+
}): Promise<{
|
|
13
|
+
content: Array<{
|
|
14
|
+
type: string;
|
|
15
|
+
text: string;
|
|
16
|
+
}>;
|
|
17
|
+
}>;
|
|
18
|
+
export declare function handleExportSmartlist(args: {
|
|
19
|
+
smartlistId: string;
|
|
20
|
+
}): Promise<{
|
|
21
|
+
content: Array<{
|
|
22
|
+
type: string;
|
|
23
|
+
text: string;
|
|
24
|
+
}>;
|
|
25
|
+
}>;
|
|
26
|
+
//# sourceMappingURL=smartlist.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"smartlist.d.ts","sourceRoot":"","sources":["../../../src/tools/smartlist.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAG1D;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB,EAAE,IAwB9B,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,IAsBjC,CAAC;AAEF,wBAAsB,kBAAkB,CAAC,IAAI,EAAE;IAC7C,WAAW,EAAE,MAAM,CAAC;CACrB,GAAG,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC,CAsC9D;AAED,wBAAsB,qBAAqB,CAAC,IAAI,EAAE;IAChD,WAAW,EAAE,MAAM,CAAC;CACrB,GAAG,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,CAAC,CAwC9D"}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { ConfigManager } from "../config.js";
|
|
2
|
+
/**
|
|
3
|
+
* Smartlist Tools
|
|
4
|
+
*
|
|
5
|
+
* Execute and export saved queries (Smart Lists).
|
|
6
|
+
* Smart Lists are reusable filtered views of content.
|
|
7
|
+
*/
|
|
8
|
+
export const runSmartlistTool = {
|
|
9
|
+
name: "run_smartlist",
|
|
10
|
+
description: `Execute a Smart List (saved query) and get results.
|
|
11
|
+
|
|
12
|
+
Smart Lists are pre-configured filtered views with columns, sorting, and pagination.
|
|
13
|
+
|
|
14
|
+
**Example:**
|
|
15
|
+
\`\`\`json
|
|
16
|
+
{
|
|
17
|
+
"smartlistId": "abc123"
|
|
18
|
+
}
|
|
19
|
+
\`\`\`
|
|
20
|
+
|
|
21
|
+
Returns the smartlist configuration and matching results.`,
|
|
22
|
+
inputSchema: {
|
|
23
|
+
type: "object",
|
|
24
|
+
properties: {
|
|
25
|
+
smartlistId: {
|
|
26
|
+
type: "string",
|
|
27
|
+
description: "The Smart List ID to execute"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
required: ["smartlistId"]
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
export const exportSmartlistTool = {
|
|
34
|
+
name: "export_smartlist",
|
|
35
|
+
description: `Export a Smart List's results to CSV.
|
|
36
|
+
|
|
37
|
+
Creates a batch export job. Use get_batch_status to track progress.
|
|
38
|
+
|
|
39
|
+
**Example:**
|
|
40
|
+
\`\`\`json
|
|
41
|
+
{
|
|
42
|
+
"smartlistId": "abc123"
|
|
43
|
+
}
|
|
44
|
+
\`\`\``,
|
|
45
|
+
inputSchema: {
|
|
46
|
+
type: "object",
|
|
47
|
+
properties: {
|
|
48
|
+
smartlistId: {
|
|
49
|
+
type: "string",
|
|
50
|
+
description: "The Smart List ID to export"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
required: ["smartlistId"]
|
|
54
|
+
},
|
|
55
|
+
};
|
|
56
|
+
export async function handleRunSmartlist(args) {
|
|
57
|
+
try {
|
|
58
|
+
const configManager = new ConfigManager();
|
|
59
|
+
const config = await configManager.loadConfig();
|
|
60
|
+
if (!config) {
|
|
61
|
+
throw new Error('Qik MCP server not configured. Run setup first.');
|
|
62
|
+
}
|
|
63
|
+
const response = await fetch(`${config.apiUrl || 'https://api.qik.dev'}/smartlist/${args.smartlistId}`, {
|
|
64
|
+
headers: {
|
|
65
|
+
'Authorization': `Bearer ${config.accessToken}`,
|
|
66
|
+
'Content-Type': 'application/json',
|
|
67
|
+
},
|
|
68
|
+
});
|
|
69
|
+
if (!response.ok) {
|
|
70
|
+
const errorText = await response.text();
|
|
71
|
+
throw new Error(`HTTP ${response.status}: ${errorText}`);
|
|
72
|
+
}
|
|
73
|
+
const data = await response.json();
|
|
74
|
+
return {
|
|
75
|
+
content: [{
|
|
76
|
+
type: "text",
|
|
77
|
+
text: JSON.stringify(data, null, 2)
|
|
78
|
+
}]
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
catch (error) {
|
|
82
|
+
return {
|
|
83
|
+
content: [{
|
|
84
|
+
type: "text",
|
|
85
|
+
text: JSON.stringify({ error: error.message }, null, 2)
|
|
86
|
+
}]
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
export async function handleExportSmartlist(args) {
|
|
91
|
+
try {
|
|
92
|
+
const configManager = new ConfigManager();
|
|
93
|
+
const config = await configManager.loadConfig();
|
|
94
|
+
if (!config) {
|
|
95
|
+
throw new Error('Qik MCP server not configured. Run setup first.');
|
|
96
|
+
}
|
|
97
|
+
const response = await fetch(`${config.apiUrl || 'https://api.qik.dev'}/smartlist/${args.smartlistId}/export`, {
|
|
98
|
+
method: 'POST',
|
|
99
|
+
headers: {
|
|
100
|
+
'Authorization': `Bearer ${config.accessToken}`,
|
|
101
|
+
'Content-Type': 'application/json',
|
|
102
|
+
},
|
|
103
|
+
body: JSON.stringify({})
|
|
104
|
+
});
|
|
105
|
+
if (!response.ok) {
|
|
106
|
+
const errorText = await response.text();
|
|
107
|
+
throw new Error(`HTTP ${response.status}: ${errorText}`);
|
|
108
|
+
}
|
|
109
|
+
const data = await response.json();
|
|
110
|
+
return {
|
|
111
|
+
content: [{
|
|
112
|
+
type: "text",
|
|
113
|
+
text: JSON.stringify(data, null, 2)
|
|
114
|
+
}]
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
catch (error) {
|
|
118
|
+
return {
|
|
119
|
+
content: [{
|
|
120
|
+
type: "text",
|
|
121
|
+
text: JSON.stringify({ error: error.message }, null, 2)
|
|
122
|
+
}]
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
//# sourceMappingURL=smartlist.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"smartlist.js","sourceRoot":"","sources":["../../../src/tools/smartlist.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;
|
|
1
|
+
{"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../../src/tools/update.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAG1D,eAAO,MAAM,iBAAiB,EAAE,IAyC/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,CAgDhH"}
|