@lyrra/mcp-server 1.1.3 → 1.1.7
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 +80 -250
- package/dist/auth-session.js +171 -0
- package/dist/eduflow-block-docs.js +438 -0
- package/dist/http-incoming-auth.js +48 -0
- package/dist/http-main.js +104 -0
- package/dist/index.js +16 -12
- package/dist/lyrra-http.js +80 -0
- package/dist/lyrra-mcp-core.js +174 -0
- package/dist/openapi-parse.js +61 -0
- package/dist/register-eduflow-block-tools.js +31 -0
- package/package.json +41 -13
- package/Dockerfile +0 -16
- package/dist/client.d.ts +0 -23
- package/dist/client.d.ts.map +0 -1
- package/dist/client.js +0 -92
- package/dist/client.js.map +0 -1
- package/dist/config.d.ts +0 -8
- package/dist/config.d.ts.map +0 -1
- package/dist/config.js +0 -8
- package/dist/config.js.map +0 -1
- package/dist/http-server.d.ts +0 -8
- package/dist/http-server.d.ts.map +0 -1
- package/dist/http-server.js +0 -481
- package/dist/http-server.js.map +0 -1
- package/dist/index.d.ts +0 -3
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/resources/block-types.d.ts +0 -318
- package/dist/resources/block-types.d.ts.map +0 -1
- package/dist/resources/block-types.js +0 -297
- package/dist/resources/block-types.js.map +0 -1
- package/dist/resources/flow-schema.d.ts +0 -147
- package/dist/resources/flow-schema.d.ts.map +0 -1
- package/dist/resources/flow-schema.js +0 -143
- package/dist/resources/flow-schema.js.map +0 -1
- package/dist/server-factory.d.ts +0 -8
- package/dist/server-factory.d.ts.map +0 -1
- package/dist/server-factory.js +0 -82
- package/dist/server-factory.js.map +0 -1
- package/dist/tools/admin.d.ts +0 -265
- package/dist/tools/admin.d.ts.map +0 -1
- package/dist/tools/admin.js +0 -118
- package/dist/tools/admin.js.map +0 -1
- package/dist/tools/ai-designer.d.ts +0 -297
- package/dist/tools/ai-designer.d.ts.map +0 -1
- package/dist/tools/ai-designer.js +0 -89
- package/dist/tools/ai-designer.js.map +0 -1
- package/dist/tools/analytics.d.ts +0 -95
- package/dist/tools/analytics.d.ts.map +0 -1
- package/dist/tools/analytics.js +0 -44
- package/dist/tools/analytics.js.map +0 -1
- package/dist/tools/auth.d.ts +0 -61
- package/dist/tools/auth.d.ts.map +0 -1
- package/dist/tools/auth.js +0 -36
- package/dist/tools/auth.js.map +0 -1
- package/dist/tools/blocks.d.ts +0 -457
- package/dist/tools/blocks.d.ts.map +0 -1
- package/dist/tools/blocks.js +0 -173
- package/dist/tools/blocks.js.map +0 -1
- package/dist/tools/connections.d.ts +0 -173
- package/dist/tools/connections.d.ts.map +0 -1
- package/dist/tools/connections.js +0 -81
- package/dist/tools/connections.js.map +0 -1
- package/dist/tools/eduflow.d.ts +0 -409
- package/dist/tools/eduflow.d.ts.map +0 -1
- package/dist/tools/eduflow.js +0 -139
- package/dist/tools/eduflow.js.map +0 -1
- package/dist/tools/participants.d.ts +0 -221
- package/dist/tools/participants.d.ts.map +0 -1
- package/dist/tools/participants.js +0 -70
- package/dist/tools/participants.js.map +0 -1
- package/dist/tools/presentation.d.ts +0 -233
- package/dist/tools/presentation.d.ts.map +0 -1
- package/dist/tools/presentation.js +0 -57
- package/dist/tools/presentation.js.map +0 -1
- package/dist/tools/projects.d.ts +0 -131
- package/dist/tools/projects.d.ts.map +0 -1
- package/dist/tools/projects.js +0 -55
- package/dist/tools/projects.js.map +0 -1
- package/dist/tools/resources.d.ts +0 -93
- package/dist/tools/resources.d.ts.map +0 -1
- package/dist/tools/resources.js +0 -37
- package/dist/tools/resources.js.map +0 -1
- package/dist/tools/store.d.ts +0 -125
- package/dist/tools/store.d.ts.map +0 -1
- package/dist/tools/store.js +0 -66
- package/dist/tools/store.js.map +0 -1
- package/mcp-config.example.json +0 -14
- package/src/client.ts +0 -106
- package/src/config.ts +0 -7
- package/src/http-server.ts +0 -591
- package/src/index.ts +0 -23
- package/src/resources/block-types.ts +0 -298
- package/src/resources/flow-schema.ts +0 -148
- package/src/server-factory.ts +0 -109
- package/src/tools/admin.ts +0 -128
- package/src/tools/ai-designer.ts +0 -97
- package/src/tools/analytics.ts +0 -49
- package/src/tools/auth.ts +0 -39
- package/src/tools/blocks.ts +0 -186
- package/src/tools/connections.ts +0 -83
- package/src/tools/eduflow.ts +0 -150
- package/src/tools/participants.ts +0 -77
- package/src/tools/presentation.ts +0 -61
- package/src/tools/projects.ts +0 -61
- package/src/tools/resources.ts +0 -41
- package/src/tools/store.ts +0 -67
- package/tsconfig.json +0 -19
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { LyrraClient } from '../client.js';
|
|
3
|
-
export declare function createParticipantsTools(c: LyrraClient): {
|
|
4
|
-
participant_list: {
|
|
5
|
-
description: string;
|
|
6
|
-
inputSchema: z.ZodObject<{
|
|
7
|
-
flowId: z.ZodString;
|
|
8
|
-
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
flowId: string;
|
|
10
|
-
}, {
|
|
11
|
-
flowId: string;
|
|
12
|
-
}>;
|
|
13
|
-
handler: ({ flowId }: {
|
|
14
|
-
flowId: string;
|
|
15
|
-
}) => Promise<any>;
|
|
16
|
-
};
|
|
17
|
-
participant_add: {
|
|
18
|
-
description: string;
|
|
19
|
-
inputSchema: z.ZodObject<{
|
|
20
|
-
flowId: z.ZodString;
|
|
21
|
-
participants: z.ZodArray<z.ZodObject<{
|
|
22
|
-
email: z.ZodString;
|
|
23
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
24
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
25
|
-
}, "strip", z.ZodTypeAny, {
|
|
26
|
-
email: string;
|
|
27
|
-
firstName?: string | undefined;
|
|
28
|
-
lastName?: string | undefined;
|
|
29
|
-
}, {
|
|
30
|
-
email: string;
|
|
31
|
-
firstName?: string | undefined;
|
|
32
|
-
lastName?: string | undefined;
|
|
33
|
-
}>, "many">;
|
|
34
|
-
}, "strip", z.ZodTypeAny, {
|
|
35
|
-
flowId: string;
|
|
36
|
-
participants: {
|
|
37
|
-
email: string;
|
|
38
|
-
firstName?: string | undefined;
|
|
39
|
-
lastName?: string | undefined;
|
|
40
|
-
}[];
|
|
41
|
-
}, {
|
|
42
|
-
flowId: string;
|
|
43
|
-
participants: {
|
|
44
|
-
email: string;
|
|
45
|
-
firstName?: string | undefined;
|
|
46
|
-
lastName?: string | undefined;
|
|
47
|
-
}[];
|
|
48
|
-
}>;
|
|
49
|
-
handler: ({ flowId, participants }: any) => Promise<any>;
|
|
50
|
-
};
|
|
51
|
-
participant_remove: {
|
|
52
|
-
description: string;
|
|
53
|
-
inputSchema: z.ZodObject<{
|
|
54
|
-
flowId: z.ZodString;
|
|
55
|
-
studentId: z.ZodString;
|
|
56
|
-
}, "strip", z.ZodTypeAny, {
|
|
57
|
-
flowId: string;
|
|
58
|
-
studentId: string;
|
|
59
|
-
}, {
|
|
60
|
-
flowId: string;
|
|
61
|
-
studentId: string;
|
|
62
|
-
}>;
|
|
63
|
-
handler: ({ flowId, studentId }: {
|
|
64
|
-
flowId: string;
|
|
65
|
-
studentId: string;
|
|
66
|
-
}) => Promise<any>;
|
|
67
|
-
};
|
|
68
|
-
participant_get_progress: {
|
|
69
|
-
description: string;
|
|
70
|
-
inputSchema: z.ZodObject<{
|
|
71
|
-
flowId: z.ZodString;
|
|
72
|
-
studentToken: z.ZodString;
|
|
73
|
-
}, "strip", z.ZodTypeAny, {
|
|
74
|
-
flowId: string;
|
|
75
|
-
studentToken: string;
|
|
76
|
-
}, {
|
|
77
|
-
flowId: string;
|
|
78
|
-
studentToken: string;
|
|
79
|
-
}>;
|
|
80
|
-
handler: ({ flowId, studentToken }: {
|
|
81
|
-
flowId: string;
|
|
82
|
-
studentToken: string;
|
|
83
|
-
}) => Promise<any>;
|
|
84
|
-
};
|
|
85
|
-
participant_get_overview: {
|
|
86
|
-
description: string;
|
|
87
|
-
inputSchema: z.ZodObject<{
|
|
88
|
-
participantId: z.ZodString;
|
|
89
|
-
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
participantId: string;
|
|
91
|
-
}, {
|
|
92
|
-
participantId: string;
|
|
93
|
-
}>;
|
|
94
|
-
handler: ({ participantId }: {
|
|
95
|
-
participantId: string;
|
|
96
|
-
}) => Promise<any>;
|
|
97
|
-
};
|
|
98
|
-
participant_get_flow_stats: {
|
|
99
|
-
description: string;
|
|
100
|
-
inputSchema: z.ZodObject<{
|
|
101
|
-
flowId: z.ZodString;
|
|
102
|
-
}, "strip", z.ZodTypeAny, {
|
|
103
|
-
flowId: string;
|
|
104
|
-
}, {
|
|
105
|
-
flowId: string;
|
|
106
|
-
}>;
|
|
107
|
-
handler: ({ flowId }: {
|
|
108
|
-
flowId: string;
|
|
109
|
-
}) => Promise<any>;
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
export declare const participantsTools: {
|
|
113
|
-
participant_list: {
|
|
114
|
-
description: string;
|
|
115
|
-
inputSchema: z.ZodObject<{
|
|
116
|
-
flowId: z.ZodString;
|
|
117
|
-
}, "strip", z.ZodTypeAny, {
|
|
118
|
-
flowId: string;
|
|
119
|
-
}, {
|
|
120
|
-
flowId: string;
|
|
121
|
-
}>;
|
|
122
|
-
handler: ({ flowId }: {
|
|
123
|
-
flowId: string;
|
|
124
|
-
}) => Promise<any>;
|
|
125
|
-
};
|
|
126
|
-
participant_add: {
|
|
127
|
-
description: string;
|
|
128
|
-
inputSchema: z.ZodObject<{
|
|
129
|
-
flowId: z.ZodString;
|
|
130
|
-
participants: z.ZodArray<z.ZodObject<{
|
|
131
|
-
email: z.ZodString;
|
|
132
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
133
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
134
|
-
}, "strip", z.ZodTypeAny, {
|
|
135
|
-
email: string;
|
|
136
|
-
firstName?: string | undefined;
|
|
137
|
-
lastName?: string | undefined;
|
|
138
|
-
}, {
|
|
139
|
-
email: string;
|
|
140
|
-
firstName?: string | undefined;
|
|
141
|
-
lastName?: string | undefined;
|
|
142
|
-
}>, "many">;
|
|
143
|
-
}, "strip", z.ZodTypeAny, {
|
|
144
|
-
flowId: string;
|
|
145
|
-
participants: {
|
|
146
|
-
email: string;
|
|
147
|
-
firstName?: string | undefined;
|
|
148
|
-
lastName?: string | undefined;
|
|
149
|
-
}[];
|
|
150
|
-
}, {
|
|
151
|
-
flowId: string;
|
|
152
|
-
participants: {
|
|
153
|
-
email: string;
|
|
154
|
-
firstName?: string | undefined;
|
|
155
|
-
lastName?: string | undefined;
|
|
156
|
-
}[];
|
|
157
|
-
}>;
|
|
158
|
-
handler: ({ flowId, participants }: any) => Promise<any>;
|
|
159
|
-
};
|
|
160
|
-
participant_remove: {
|
|
161
|
-
description: string;
|
|
162
|
-
inputSchema: z.ZodObject<{
|
|
163
|
-
flowId: z.ZodString;
|
|
164
|
-
studentId: z.ZodString;
|
|
165
|
-
}, "strip", z.ZodTypeAny, {
|
|
166
|
-
flowId: string;
|
|
167
|
-
studentId: string;
|
|
168
|
-
}, {
|
|
169
|
-
flowId: string;
|
|
170
|
-
studentId: string;
|
|
171
|
-
}>;
|
|
172
|
-
handler: ({ flowId, studentId }: {
|
|
173
|
-
flowId: string;
|
|
174
|
-
studentId: string;
|
|
175
|
-
}) => Promise<any>;
|
|
176
|
-
};
|
|
177
|
-
participant_get_progress: {
|
|
178
|
-
description: string;
|
|
179
|
-
inputSchema: z.ZodObject<{
|
|
180
|
-
flowId: z.ZodString;
|
|
181
|
-
studentToken: z.ZodString;
|
|
182
|
-
}, "strip", z.ZodTypeAny, {
|
|
183
|
-
flowId: string;
|
|
184
|
-
studentToken: string;
|
|
185
|
-
}, {
|
|
186
|
-
flowId: string;
|
|
187
|
-
studentToken: string;
|
|
188
|
-
}>;
|
|
189
|
-
handler: ({ flowId, studentToken }: {
|
|
190
|
-
flowId: string;
|
|
191
|
-
studentToken: string;
|
|
192
|
-
}) => Promise<any>;
|
|
193
|
-
};
|
|
194
|
-
participant_get_overview: {
|
|
195
|
-
description: string;
|
|
196
|
-
inputSchema: z.ZodObject<{
|
|
197
|
-
participantId: z.ZodString;
|
|
198
|
-
}, "strip", z.ZodTypeAny, {
|
|
199
|
-
participantId: string;
|
|
200
|
-
}, {
|
|
201
|
-
participantId: string;
|
|
202
|
-
}>;
|
|
203
|
-
handler: ({ participantId }: {
|
|
204
|
-
participantId: string;
|
|
205
|
-
}) => Promise<any>;
|
|
206
|
-
};
|
|
207
|
-
participant_get_flow_stats: {
|
|
208
|
-
description: string;
|
|
209
|
-
inputSchema: z.ZodObject<{
|
|
210
|
-
flowId: z.ZodString;
|
|
211
|
-
}, "strip", z.ZodTypeAny, {
|
|
212
|
-
flowId: string;
|
|
213
|
-
}, {
|
|
214
|
-
flowId: string;
|
|
215
|
-
}>;
|
|
216
|
-
handler: ({ flowId }: {
|
|
217
|
-
flowId: string;
|
|
218
|
-
}) => Promise<any>;
|
|
219
|
-
};
|
|
220
|
-
};
|
|
221
|
-
//# sourceMappingURL=participants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"participants.d.ts","sourceRoot":"","sources":["../../src/tools/participants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAG3C,wBAAgB,uBAAuB,CAAC,CAAC,EAAE,WAAW;;;;;;;;;;8BAOtB;YAAE,MAAM,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAeJ,GAAG;;;;;;;;;;;;;;yCAWN;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,SAAS,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;;;;4CAWlC;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;qCAU/C;YAAE,aAAa,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;8BAUhC;YAAE,MAAM,EAAE,MAAM,CAAA;SAAE;;EAKjD;AAGD,eAAO,MAAM,iBAAiB;;;;;;;;;;8BAjEE;YAAE,MAAM,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAeJ,GAAG;;;;;;;;;;;;;;yCAWN;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,SAAS,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;;;;4CAWlC;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;qCAU/C;YAAE,aAAa,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;8BAUhC;YAAE,MAAM,EAAE,MAAM,CAAA;SAAE;;CAQqB,CAAC"}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { client as defaultClient } from '../client.js';
|
|
3
|
-
export function createParticipantsTools(c) {
|
|
4
|
-
return {
|
|
5
|
-
participant_list: {
|
|
6
|
-
description: 'Lister tous les participants/étudiants inscrits à un parcours EduFlow avec leur progression.',
|
|
7
|
-
inputSchema: z.object({
|
|
8
|
-
flowId: z.string().uuid().describe('ID du parcours'),
|
|
9
|
-
}),
|
|
10
|
-
handler: async ({ flowId }) => {
|
|
11
|
-
return c.get(`/flows/${flowId}/students`, 'eduflow');
|
|
12
|
-
},
|
|
13
|
-
},
|
|
14
|
-
participant_add: {
|
|
15
|
-
description: 'Ajouter un ou plusieurs participants à un parcours EduFlow. Chaque participant reçoit un lien unique.',
|
|
16
|
-
inputSchema: z.object({
|
|
17
|
-
flowId: z.string().uuid().describe('ID du parcours'),
|
|
18
|
-
participants: z.array(z.object({
|
|
19
|
-
email: z.string().email().describe('Email du participant'),
|
|
20
|
-
firstName: z.string().optional().describe('Prénom'),
|
|
21
|
-
lastName: z.string().optional().describe('Nom'),
|
|
22
|
-
})).describe('Liste des participants à ajouter'),
|
|
23
|
-
}),
|
|
24
|
-
handler: async ({ flowId, participants }) => {
|
|
25
|
-
return c.post(`/flows/${flowId}/students`, { students: participants }, 'eduflow');
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
participant_remove: {
|
|
29
|
-
description: 'Retirer un participant d\'un parcours EduFlow.',
|
|
30
|
-
inputSchema: z.object({
|
|
31
|
-
flowId: z.string().uuid().describe('ID du parcours'),
|
|
32
|
-
studentId: z.string().uuid().describe('ID de l\'inscription étudiant'),
|
|
33
|
-
}),
|
|
34
|
-
handler: async ({ flowId, studentId }) => {
|
|
35
|
-
return c.delete(`/flows/${flowId}/students/${studentId}`, 'eduflow');
|
|
36
|
-
},
|
|
37
|
-
},
|
|
38
|
-
participant_get_progress: {
|
|
39
|
-
description: 'Récupérer la progression détaillée d\'un participant : blocs complétés, scores, temps passé par bloc.',
|
|
40
|
-
inputSchema: z.object({
|
|
41
|
-
flowId: z.string().uuid().describe('ID du parcours'),
|
|
42
|
-
studentToken: z.string().describe('Token unique du participant'),
|
|
43
|
-
}),
|
|
44
|
-
handler: async ({ flowId, studentToken }) => {
|
|
45
|
-
return c.get(`/eduflow/progress/stats/${flowId}/${studentToken}`);
|
|
46
|
-
},
|
|
47
|
-
},
|
|
48
|
-
participant_get_overview: {
|
|
49
|
-
description: 'Vue d\'ensemble d\'un participant global : tous les parcours suivis, certifications, progression globale.',
|
|
50
|
-
inputSchema: z.object({
|
|
51
|
-
participantId: z.string().uuid().describe('ID global du participant'),
|
|
52
|
-
}),
|
|
53
|
-
handler: async ({ participantId }) => {
|
|
54
|
-
return c.get(`/participants/${participantId}/overview`, 'eduflow');
|
|
55
|
-
},
|
|
56
|
-
},
|
|
57
|
-
participant_get_flow_stats: {
|
|
58
|
-
description: 'Récupérer les statistiques de tous les participants d\'un parcours (taux de complétion, scores moyens, temps moyen).',
|
|
59
|
-
inputSchema: z.object({
|
|
60
|
-
flowId: z.string().uuid().describe('ID du parcours'),
|
|
61
|
-
}),
|
|
62
|
-
handler: async ({ flowId }) => {
|
|
63
|
-
return c.get(`/eduflow/progress/stats/flow/${flowId}`);
|
|
64
|
-
},
|
|
65
|
-
},
|
|
66
|
-
};
|
|
67
|
-
}
|
|
68
|
-
// Backward compatibility for stdio mode
|
|
69
|
-
export const participantsTools = createParticipantsTools(defaultClient);
|
|
70
|
-
//# sourceMappingURL=participants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"participants.js","sourceRoot":"","sources":["../../src/tools/participants.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { LyrraClient } from '../client.js';
|
|
3
|
-
export declare function createPresentationTools(c: LyrraClient): {
|
|
4
|
-
presentation_get: {
|
|
5
|
-
description: string;
|
|
6
|
-
inputSchema: z.ZodObject<{
|
|
7
|
-
flowId: z.ZodString;
|
|
8
|
-
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
flowId: string;
|
|
10
|
-
}, {
|
|
11
|
-
flowId: string;
|
|
12
|
-
}>;
|
|
13
|
-
handler: ({ flowId }: {
|
|
14
|
-
flowId: string;
|
|
15
|
-
}) => Promise<{
|
|
16
|
-
presentationEnabled: any;
|
|
17
|
-
presentationData: any;
|
|
18
|
-
objectives: any;
|
|
19
|
-
title: any;
|
|
20
|
-
description: any;
|
|
21
|
-
}>;
|
|
22
|
-
};
|
|
23
|
-
presentation_update: {
|
|
24
|
-
description: string;
|
|
25
|
-
inputSchema: z.ZodObject<{
|
|
26
|
-
flowId: z.ZodString;
|
|
27
|
-
presentationData: z.ZodObject<{
|
|
28
|
-
heroTitle: z.ZodOptional<z.ZodString>;
|
|
29
|
-
heroSubtitle: z.ZodOptional<z.ZodString>;
|
|
30
|
-
heroImage: z.ZodOptional<z.ZodString>;
|
|
31
|
-
sections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32
|
-
type: z.ZodString;
|
|
33
|
-
title: z.ZodString;
|
|
34
|
-
content: z.ZodAny;
|
|
35
|
-
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
type: string;
|
|
37
|
-
title: string;
|
|
38
|
-
content?: any;
|
|
39
|
-
}, {
|
|
40
|
-
type: string;
|
|
41
|
-
title: string;
|
|
42
|
-
content?: any;
|
|
43
|
-
}>, "many">>;
|
|
44
|
-
ctaText: z.ZodOptional<z.ZodString>;
|
|
45
|
-
ctaUrl: z.ZodOptional<z.ZodString>;
|
|
46
|
-
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
heroTitle?: string | undefined;
|
|
48
|
-
heroSubtitle?: string | undefined;
|
|
49
|
-
heroImage?: string | undefined;
|
|
50
|
-
sections?: {
|
|
51
|
-
type: string;
|
|
52
|
-
title: string;
|
|
53
|
-
content?: any;
|
|
54
|
-
}[] | undefined;
|
|
55
|
-
ctaText?: string | undefined;
|
|
56
|
-
ctaUrl?: string | undefined;
|
|
57
|
-
}, {
|
|
58
|
-
heroTitle?: string | undefined;
|
|
59
|
-
heroSubtitle?: string | undefined;
|
|
60
|
-
heroImage?: string | undefined;
|
|
61
|
-
sections?: {
|
|
62
|
-
type: string;
|
|
63
|
-
title: string;
|
|
64
|
-
content?: any;
|
|
65
|
-
}[] | undefined;
|
|
66
|
-
ctaText?: string | undefined;
|
|
67
|
-
ctaUrl?: string | undefined;
|
|
68
|
-
}>;
|
|
69
|
-
}, "strip", z.ZodTypeAny, {
|
|
70
|
-
flowId: string;
|
|
71
|
-
presentationData: {
|
|
72
|
-
heroTitle?: string | undefined;
|
|
73
|
-
heroSubtitle?: string | undefined;
|
|
74
|
-
heroImage?: string | undefined;
|
|
75
|
-
sections?: {
|
|
76
|
-
type: string;
|
|
77
|
-
title: string;
|
|
78
|
-
content?: any;
|
|
79
|
-
}[] | undefined;
|
|
80
|
-
ctaText?: string | undefined;
|
|
81
|
-
ctaUrl?: string | undefined;
|
|
82
|
-
};
|
|
83
|
-
}, {
|
|
84
|
-
flowId: string;
|
|
85
|
-
presentationData: {
|
|
86
|
-
heroTitle?: string | undefined;
|
|
87
|
-
heroSubtitle?: string | undefined;
|
|
88
|
-
heroImage?: string | undefined;
|
|
89
|
-
sections?: {
|
|
90
|
-
type: string;
|
|
91
|
-
title: string;
|
|
92
|
-
content?: any;
|
|
93
|
-
}[] | undefined;
|
|
94
|
-
ctaText?: string | undefined;
|
|
95
|
-
ctaUrl?: string | undefined;
|
|
96
|
-
};
|
|
97
|
-
}>;
|
|
98
|
-
handler: ({ flowId, presentationData }: any) => Promise<any>;
|
|
99
|
-
};
|
|
100
|
-
presentation_toggle: {
|
|
101
|
-
description: string;
|
|
102
|
-
inputSchema: z.ZodObject<{
|
|
103
|
-
flowId: z.ZodString;
|
|
104
|
-
enabled: z.ZodBoolean;
|
|
105
|
-
}, "strip", z.ZodTypeAny, {
|
|
106
|
-
flowId: string;
|
|
107
|
-
enabled: boolean;
|
|
108
|
-
}, {
|
|
109
|
-
flowId: string;
|
|
110
|
-
enabled: boolean;
|
|
111
|
-
}>;
|
|
112
|
-
handler: ({ flowId, enabled }: {
|
|
113
|
-
flowId: string;
|
|
114
|
-
enabled: boolean;
|
|
115
|
-
}) => Promise<any>;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
118
|
-
export declare const presentationTools: {
|
|
119
|
-
presentation_get: {
|
|
120
|
-
description: string;
|
|
121
|
-
inputSchema: z.ZodObject<{
|
|
122
|
-
flowId: z.ZodString;
|
|
123
|
-
}, "strip", z.ZodTypeAny, {
|
|
124
|
-
flowId: string;
|
|
125
|
-
}, {
|
|
126
|
-
flowId: string;
|
|
127
|
-
}>;
|
|
128
|
-
handler: ({ flowId }: {
|
|
129
|
-
flowId: string;
|
|
130
|
-
}) => Promise<{
|
|
131
|
-
presentationEnabled: any;
|
|
132
|
-
presentationData: any;
|
|
133
|
-
objectives: any;
|
|
134
|
-
title: any;
|
|
135
|
-
description: any;
|
|
136
|
-
}>;
|
|
137
|
-
};
|
|
138
|
-
presentation_update: {
|
|
139
|
-
description: string;
|
|
140
|
-
inputSchema: z.ZodObject<{
|
|
141
|
-
flowId: z.ZodString;
|
|
142
|
-
presentationData: z.ZodObject<{
|
|
143
|
-
heroTitle: z.ZodOptional<z.ZodString>;
|
|
144
|
-
heroSubtitle: z.ZodOptional<z.ZodString>;
|
|
145
|
-
heroImage: z.ZodOptional<z.ZodString>;
|
|
146
|
-
sections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
147
|
-
type: z.ZodString;
|
|
148
|
-
title: z.ZodString;
|
|
149
|
-
content: z.ZodAny;
|
|
150
|
-
}, "strip", z.ZodTypeAny, {
|
|
151
|
-
type: string;
|
|
152
|
-
title: string;
|
|
153
|
-
content?: any;
|
|
154
|
-
}, {
|
|
155
|
-
type: string;
|
|
156
|
-
title: string;
|
|
157
|
-
content?: any;
|
|
158
|
-
}>, "many">>;
|
|
159
|
-
ctaText: z.ZodOptional<z.ZodString>;
|
|
160
|
-
ctaUrl: z.ZodOptional<z.ZodString>;
|
|
161
|
-
}, "strip", z.ZodTypeAny, {
|
|
162
|
-
heroTitle?: string | undefined;
|
|
163
|
-
heroSubtitle?: string | undefined;
|
|
164
|
-
heroImage?: string | undefined;
|
|
165
|
-
sections?: {
|
|
166
|
-
type: string;
|
|
167
|
-
title: string;
|
|
168
|
-
content?: any;
|
|
169
|
-
}[] | undefined;
|
|
170
|
-
ctaText?: string | undefined;
|
|
171
|
-
ctaUrl?: string | undefined;
|
|
172
|
-
}, {
|
|
173
|
-
heroTitle?: string | undefined;
|
|
174
|
-
heroSubtitle?: string | undefined;
|
|
175
|
-
heroImage?: string | undefined;
|
|
176
|
-
sections?: {
|
|
177
|
-
type: string;
|
|
178
|
-
title: string;
|
|
179
|
-
content?: any;
|
|
180
|
-
}[] | undefined;
|
|
181
|
-
ctaText?: string | undefined;
|
|
182
|
-
ctaUrl?: string | undefined;
|
|
183
|
-
}>;
|
|
184
|
-
}, "strip", z.ZodTypeAny, {
|
|
185
|
-
flowId: string;
|
|
186
|
-
presentationData: {
|
|
187
|
-
heroTitle?: string | undefined;
|
|
188
|
-
heroSubtitle?: string | undefined;
|
|
189
|
-
heroImage?: string | undefined;
|
|
190
|
-
sections?: {
|
|
191
|
-
type: string;
|
|
192
|
-
title: string;
|
|
193
|
-
content?: any;
|
|
194
|
-
}[] | undefined;
|
|
195
|
-
ctaText?: string | undefined;
|
|
196
|
-
ctaUrl?: string | undefined;
|
|
197
|
-
};
|
|
198
|
-
}, {
|
|
199
|
-
flowId: string;
|
|
200
|
-
presentationData: {
|
|
201
|
-
heroTitle?: string | undefined;
|
|
202
|
-
heroSubtitle?: string | undefined;
|
|
203
|
-
heroImage?: string | undefined;
|
|
204
|
-
sections?: {
|
|
205
|
-
type: string;
|
|
206
|
-
title: string;
|
|
207
|
-
content?: any;
|
|
208
|
-
}[] | undefined;
|
|
209
|
-
ctaText?: string | undefined;
|
|
210
|
-
ctaUrl?: string | undefined;
|
|
211
|
-
};
|
|
212
|
-
}>;
|
|
213
|
-
handler: ({ flowId, presentationData }: any) => Promise<any>;
|
|
214
|
-
};
|
|
215
|
-
presentation_toggle: {
|
|
216
|
-
description: string;
|
|
217
|
-
inputSchema: z.ZodObject<{
|
|
218
|
-
flowId: z.ZodString;
|
|
219
|
-
enabled: z.ZodBoolean;
|
|
220
|
-
}, "strip", z.ZodTypeAny, {
|
|
221
|
-
flowId: string;
|
|
222
|
-
enabled: boolean;
|
|
223
|
-
}, {
|
|
224
|
-
flowId: string;
|
|
225
|
-
enabled: boolean;
|
|
226
|
-
}>;
|
|
227
|
-
handler: ({ flowId, enabled }: {
|
|
228
|
-
flowId: string;
|
|
229
|
-
enabled: boolean;
|
|
230
|
-
}) => Promise<any>;
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
//# sourceMappingURL=presentation.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"presentation.d.ts","sourceRoot":"","sources":["../../src/tools/presentation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAG3C,wBAAgB,uBAAuB,CAAC,CAAC,EAAE,WAAW;;;;;;;;;;8BAOtB;YAAE,MAAM,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDA8BA,GAAG;;;;;;;;;;;;;;uCAWZ;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,OAAO,CAAA;SAAE;;EAK5E;AAGD,eAAO,MAAM,iBAAiB;;;;;;;;;;8BAjDE;YAAE,MAAM,EAAE,MAAM,CAAA;SAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDA8BA,GAAG;;;;;;;;;;;;;;uCAWZ;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,OAAO,CAAA;SAAE;;CAQN,CAAC"}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { client as defaultClient } from '../client.js';
|
|
3
|
-
export function createPresentationTools(c) {
|
|
4
|
-
return {
|
|
5
|
-
presentation_get: {
|
|
6
|
-
description: 'Récupérer la page de présentation d\'un parcours EduFlow (description, objectifs, image de couverture, structure affichée).',
|
|
7
|
-
inputSchema: z.object({
|
|
8
|
-
flowId: z.string().uuid().describe('ID du parcours'),
|
|
9
|
-
}),
|
|
10
|
-
handler: async ({ flowId }) => {
|
|
11
|
-
const flow = await c.get(`/flows/${flowId}`, 'eduflow');
|
|
12
|
-
return {
|
|
13
|
-
presentationEnabled: flow.presentationEnabled,
|
|
14
|
-
presentationData: flow.presentationData,
|
|
15
|
-
objectives: flow.objectives,
|
|
16
|
-
title: flow.title,
|
|
17
|
-
description: flow.description,
|
|
18
|
-
};
|
|
19
|
-
},
|
|
20
|
-
},
|
|
21
|
-
presentation_update: {
|
|
22
|
-
description: `Mettre à jour la page de présentation d'un parcours. La présentation est la page publique visible par les futurs participants.
|
|
23
|
-
Structure de presentationData : { heroTitle, heroSubtitle, heroImage, sections[{ type, title, content }], ctaText, ctaUrl }`,
|
|
24
|
-
inputSchema: z.object({
|
|
25
|
-
flowId: z.string().uuid().describe('ID du parcours'),
|
|
26
|
-
presentationData: z.object({
|
|
27
|
-
heroTitle: z.string().optional().describe('Titre principal de la page'),
|
|
28
|
-
heroSubtitle: z.string().optional().describe('Sous-titre'),
|
|
29
|
-
heroImage: z.string().optional().describe('URL de l\'image de couverture'),
|
|
30
|
-
sections: z.array(z.object({
|
|
31
|
-
type: z.string().describe('Type de section (text, objectives, structure, testimonials)'),
|
|
32
|
-
title: z.string().describe('Titre de la section'),
|
|
33
|
-
content: z.any().describe('Contenu de la section'),
|
|
34
|
-
})).optional().describe('Sections de la page'),
|
|
35
|
-
ctaText: z.string().optional().describe('Texte du bouton d\'action'),
|
|
36
|
-
ctaUrl: z.string().optional().describe('URL du bouton d\'action'),
|
|
37
|
-
}).describe('Données de la page de présentation'),
|
|
38
|
-
}),
|
|
39
|
-
handler: async ({ flowId, presentationData }) => {
|
|
40
|
-
return c.put(`/flows/${flowId}`, { presentationData }, 'eduflow');
|
|
41
|
-
},
|
|
42
|
-
},
|
|
43
|
-
presentation_toggle: {
|
|
44
|
-
description: 'Activer ou désactiver la page de présentation publique d\'un parcours.',
|
|
45
|
-
inputSchema: z.object({
|
|
46
|
-
flowId: z.string().uuid().describe('ID du parcours'),
|
|
47
|
-
enabled: z.boolean().describe('true pour activer, false pour désactiver'),
|
|
48
|
-
}),
|
|
49
|
-
handler: async ({ flowId, enabled }) => {
|
|
50
|
-
return c.put(`/flows/${flowId}`, { presentationEnabled: enabled }, 'eduflow');
|
|
51
|
-
},
|
|
52
|
-
},
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
// Backward compatibility for stdio mode
|
|
56
|
-
export const presentationTools = createPresentationTools(defaultClient);
|
|
57
|
-
//# sourceMappingURL=presentation.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"presentation.js","sourceRoot":"","sources":["../../src/tools/presentation.ts"],"names":[],"mappings":"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"}
|