snow-flow 3.4.13 → 3.4.15
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/.mcp.json.template +91 -31
- package/README.md +597 -96
- package/dist/cli.js +23 -51
- package/dist/mcp/servicenow-automation-mcp.js +65 -29
- package/dist/mcp/servicenow-change-virtualagent-pa-mcp.js +51 -21
- package/dist/mcp/servicenow-cmdb-event-hr-csm-devops-mcp.js +59 -25
- package/dist/mcp/servicenow-deployment-mcp.js +38 -16
- package/dist/mcp/servicenow-development-assistant-mcp.js +67 -31
- package/dist/mcp/servicenow-flow-workspace-mobile-mcp.js +53 -22
- package/dist/mcp/servicenow-integration-mcp.js +48 -12
- package/dist/mcp/servicenow-knowledge-catalog-mcp.js +42 -16
- package/dist/mcp/servicenow-machine-learning-mcp.js +44 -17
- package/dist/mcp/servicenow-operations-mcp.d.ts +1 -0
- package/dist/mcp/servicenow-operations-mcp.js +108 -79
- package/dist/mcp/servicenow-platform-development-mcp.js +42 -11
- package/dist/mcp/servicenow-reporting-analytics-mcp.js +36 -13
- package/dist/mcp/servicenow-security-compliance-mcp.js +35 -13
- package/dist/mcp/servicenow-system-properties-mcp.d.ts +1 -0
- package/dist/mcp/servicenow-system-properties-mcp.js +66 -42
- package/dist/mcp/servicenow-update-set-mcp.js +35 -11
- package/package.json +2 -2
- package/website/README.md +152 -0
- package/website/css/api-docs.css +366 -0
- package/website/css/style.css +809 -0
- package/website/index.html +750 -0
- package/website/js/main.js +323 -0
- package/website/netlify.toml +37 -0
- package/website/package.json +49 -0
- package/website/vercel.json +54 -0
|
@@ -0,0 +1,809 @@
|
|
|
1
|
+
/* Snow-Flow Website Styles */
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--primary-color: #0066cc;
|
|
5
|
+
--secondary-color: #00a6ff;
|
|
6
|
+
--accent-color: #00d4ff;
|
|
7
|
+
--dark-bg: #0a0e27;
|
|
8
|
+
--light-bg: #f8f9fa;
|
|
9
|
+
--card-bg: #ffffff;
|
|
10
|
+
--text-primary: #2d3748;
|
|
11
|
+
--text-secondary: #4a5568;
|
|
12
|
+
--text-light: #718096;
|
|
13
|
+
--border-color: #e2e8f0;
|
|
14
|
+
--success-color: #48bb78;
|
|
15
|
+
--warning-color: #ed8936;
|
|
16
|
+
--error-color: #f56565;
|
|
17
|
+
--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
18
|
+
--gradient-secondary: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
|
|
19
|
+
--shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
|
20
|
+
--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
|
|
21
|
+
--shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
|
|
22
|
+
--shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
* {
|
|
26
|
+
margin: 0;
|
|
27
|
+
padding: 0;
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
body {
|
|
32
|
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
33
|
+
line-height: 1.6;
|
|
34
|
+
color: var(--text-primary);
|
|
35
|
+
background: var(--light-bg);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.container {
|
|
39
|
+
max-width: 1200px;
|
|
40
|
+
margin: 0 auto;
|
|
41
|
+
padding: 0 20px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* Navigation */
|
|
45
|
+
.navbar {
|
|
46
|
+
background: white;
|
|
47
|
+
box-shadow: var(--shadow-sm);
|
|
48
|
+
position: fixed;
|
|
49
|
+
top: 0;
|
|
50
|
+
width: 100%;
|
|
51
|
+
z-index: 1000;
|
|
52
|
+
transition: all 0.3s ease;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.navbar .container {
|
|
56
|
+
display: flex;
|
|
57
|
+
justify-content: space-between;
|
|
58
|
+
align-items: center;
|
|
59
|
+
padding: 1rem 20px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.nav-brand {
|
|
63
|
+
display: flex;
|
|
64
|
+
align-items: center;
|
|
65
|
+
gap: 10px;
|
|
66
|
+
font-size: 1.5rem;
|
|
67
|
+
font-weight: 700;
|
|
68
|
+
color: var(--primary-color);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.logo {
|
|
72
|
+
font-size: 2rem;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.brand-name {
|
|
76
|
+
background: var(--gradient-secondary);
|
|
77
|
+
-webkit-background-clip: text;
|
|
78
|
+
-webkit-text-fill-color: transparent;
|
|
79
|
+
background-clip: text;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.nav-menu {
|
|
83
|
+
display: flex;
|
|
84
|
+
list-style: none;
|
|
85
|
+
gap: 2rem;
|
|
86
|
+
align-items: center;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.nav-link {
|
|
90
|
+
text-decoration: none;
|
|
91
|
+
color: var(--text-primary);
|
|
92
|
+
font-weight: 500;
|
|
93
|
+
transition: color 0.3s ease;
|
|
94
|
+
position: relative;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.nav-link:hover {
|
|
98
|
+
color: var(--primary-color);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.nav-link::after {
|
|
102
|
+
content: '';
|
|
103
|
+
position: absolute;
|
|
104
|
+
bottom: -5px;
|
|
105
|
+
left: 0;
|
|
106
|
+
width: 0;
|
|
107
|
+
height: 2px;
|
|
108
|
+
background: var(--gradient-secondary);
|
|
109
|
+
transition: width 0.3s ease;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.nav-link:hover::after {
|
|
113
|
+
width: 100%;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.nav-link.github {
|
|
117
|
+
background: var(--gradient-secondary);
|
|
118
|
+
color: white;
|
|
119
|
+
padding: 8px 20px;
|
|
120
|
+
border-radius: 20px;
|
|
121
|
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.nav-link.github:hover {
|
|
125
|
+
transform: translateY(-2px);
|
|
126
|
+
box-shadow: var(--shadow-md);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.nav-link.github::after {
|
|
130
|
+
display: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.hamburger {
|
|
134
|
+
display: none;
|
|
135
|
+
flex-direction: column;
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.hamburger span {
|
|
140
|
+
width: 25px;
|
|
141
|
+
height: 3px;
|
|
142
|
+
background: var(--text-primary);
|
|
143
|
+
margin: 3px 0;
|
|
144
|
+
transition: 0.3s;
|
|
145
|
+
border-radius: 3px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/* Hero Section */
|
|
149
|
+
.hero {
|
|
150
|
+
margin-top: 70px;
|
|
151
|
+
padding: 100px 0;
|
|
152
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
153
|
+
position: relative;
|
|
154
|
+
overflow: hidden;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.hero::before {
|
|
158
|
+
content: '';
|
|
159
|
+
position: absolute;
|
|
160
|
+
top: 0;
|
|
161
|
+
left: 0;
|
|
162
|
+
right: 0;
|
|
163
|
+
bottom: 0;
|
|
164
|
+
background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
|
|
165
|
+
animation: float 20s ease-in-out infinite;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@keyframes float {
|
|
169
|
+
0%, 100% { transform: translateY(0); }
|
|
170
|
+
50% { transform: translateY(-20px); }
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.hero-content {
|
|
174
|
+
text-align: center;
|
|
175
|
+
color: white;
|
|
176
|
+
position: relative;
|
|
177
|
+
z-index: 1;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.hero-logo {
|
|
181
|
+
font-size: 6rem;
|
|
182
|
+
margin-bottom: 1rem;
|
|
183
|
+
animation: pulse 2s ease-in-out infinite;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
@keyframes pulse {
|
|
187
|
+
0%, 100% { transform: scale(1); }
|
|
188
|
+
50% { transform: scale(1.05); }
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.hero-title {
|
|
192
|
+
font-size: 4rem;
|
|
193
|
+
font-weight: 800;
|
|
194
|
+
margin-bottom: 1rem;
|
|
195
|
+
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.hero-subtitle {
|
|
199
|
+
font-size: 1.5rem;
|
|
200
|
+
margin-bottom: 1rem;
|
|
201
|
+
opacity: 0.95;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.hero-description {
|
|
205
|
+
font-size: 1.1rem;
|
|
206
|
+
max-width: 700px;
|
|
207
|
+
margin: 0 auto 2rem;
|
|
208
|
+
opacity: 0.9;
|
|
209
|
+
line-height: 1.8;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.hero-buttons {
|
|
213
|
+
display: flex;
|
|
214
|
+
gap: 1rem;
|
|
215
|
+
justify-content: center;
|
|
216
|
+
margin-bottom: 3rem;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.btn {
|
|
220
|
+
padding: 12px 30px;
|
|
221
|
+
border-radius: 25px;
|
|
222
|
+
text-decoration: none;
|
|
223
|
+
font-weight: 600;
|
|
224
|
+
transition: all 0.3s ease;
|
|
225
|
+
display: inline-block;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.btn-primary {
|
|
229
|
+
background: white;
|
|
230
|
+
color: var(--primary-color);
|
|
231
|
+
box-shadow: var(--shadow-md);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.btn-primary:hover {
|
|
235
|
+
transform: translateY(-2px);
|
|
236
|
+
box-shadow: var(--shadow-lg);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.btn-secondary {
|
|
240
|
+
background: rgba(255,255,255,0.2);
|
|
241
|
+
color: white;
|
|
242
|
+
border: 2px solid white;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.btn-secondary:hover {
|
|
246
|
+
background: white;
|
|
247
|
+
color: var(--primary-color);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.hero-stats {
|
|
251
|
+
display: flex;
|
|
252
|
+
justify-content: center;
|
|
253
|
+
gap: 3rem;
|
|
254
|
+
margin-top: 3rem;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.stat {
|
|
258
|
+
text-align: center;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.stat-number {
|
|
262
|
+
display: block;
|
|
263
|
+
font-size: 2.5rem;
|
|
264
|
+
font-weight: 700;
|
|
265
|
+
margin-bottom: 0.5rem;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.stat-label {
|
|
269
|
+
font-size: 0.9rem;
|
|
270
|
+
opacity: 0.9;
|
|
271
|
+
text-transform: uppercase;
|
|
272
|
+
letter-spacing: 1px;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
/* What Is Section */
|
|
276
|
+
.what-is {
|
|
277
|
+
padding: 80px 0;
|
|
278
|
+
background: white;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.section-title {
|
|
282
|
+
font-size: 2.5rem;
|
|
283
|
+
text-align: center;
|
|
284
|
+
margin-bottom: 3rem;
|
|
285
|
+
color: var(--text-primary);
|
|
286
|
+
position: relative;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.section-title::after {
|
|
290
|
+
content: '';
|
|
291
|
+
display: block;
|
|
292
|
+
width: 60px;
|
|
293
|
+
height: 4px;
|
|
294
|
+
background: var(--gradient-secondary);
|
|
295
|
+
margin: 1rem auto;
|
|
296
|
+
border-radius: 2px;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.what-is-grid {
|
|
300
|
+
display: grid;
|
|
301
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
302
|
+
gap: 2rem;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.what-is-card {
|
|
306
|
+
padding: 2rem;
|
|
307
|
+
background: var(--light-bg);
|
|
308
|
+
border-radius: 12px;
|
|
309
|
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.what-is-card:hover {
|
|
313
|
+
transform: translateY(-5px);
|
|
314
|
+
box-shadow: var(--shadow-lg);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.card-icon {
|
|
318
|
+
font-size: 3rem;
|
|
319
|
+
margin-bottom: 1rem;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.what-is-card h3 {
|
|
323
|
+
margin-bottom: 1rem;
|
|
324
|
+
color: var(--text-primary);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.what-is-card p {
|
|
328
|
+
color: var(--text-secondary);
|
|
329
|
+
line-height: 1.8;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
/* Features Section */
|
|
333
|
+
.features {
|
|
334
|
+
padding: 80px 0;
|
|
335
|
+
background: var(--light-bg);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.features-grid {
|
|
339
|
+
display: grid;
|
|
340
|
+
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
341
|
+
gap: 2rem;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.feature {
|
|
345
|
+
background: white;
|
|
346
|
+
padding: 2rem;
|
|
347
|
+
border-radius: 12px;
|
|
348
|
+
box-shadow: var(--shadow-sm);
|
|
349
|
+
transition: all 0.3s ease;
|
|
350
|
+
border: 1px solid var(--border-color);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.feature:hover {
|
|
354
|
+
box-shadow: var(--shadow-lg);
|
|
355
|
+
transform: translateY(-5px);
|
|
356
|
+
border-color: var(--accent-color);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.feature-icon {
|
|
360
|
+
font-size: 2.5rem;
|
|
361
|
+
margin-bottom: 1rem;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.feature h3 {
|
|
365
|
+
margin-bottom: 0.8rem;
|
|
366
|
+
color: var(--text-primary);
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.feature p {
|
|
370
|
+
color: var(--text-secondary);
|
|
371
|
+
line-height: 1.7;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/* MCP Servers Section */
|
|
375
|
+
.mcp-servers {
|
|
376
|
+
padding: 80px 0;
|
|
377
|
+
background: white;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.section-subtitle {
|
|
381
|
+
text-align: center;
|
|
382
|
+
color: var(--text-secondary);
|
|
383
|
+
margin-bottom: 3rem;
|
|
384
|
+
font-size: 1.2rem;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.mcp-grid {
|
|
388
|
+
display: grid;
|
|
389
|
+
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
|
390
|
+
gap: 2rem;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.mcp-card {
|
|
394
|
+
background: var(--light-bg);
|
|
395
|
+
border-radius: 12px;
|
|
396
|
+
overflow: hidden;
|
|
397
|
+
transition: all 0.3s ease;
|
|
398
|
+
border: 1px solid var(--border-color);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.mcp-card:hover {
|
|
402
|
+
box-shadow: var(--shadow-lg);
|
|
403
|
+
transform: translateY(-5px);
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.mcp-header {
|
|
407
|
+
background: var(--gradient-secondary);
|
|
408
|
+
color: white;
|
|
409
|
+
padding: 1.5rem;
|
|
410
|
+
display: flex;
|
|
411
|
+
justify-content: space-between;
|
|
412
|
+
align-items: center;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.mcp-header h3 {
|
|
416
|
+
margin: 0;
|
|
417
|
+
font-size: 1.3rem;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.mcp-badge {
|
|
421
|
+
background: rgba(255,255,255,0.2);
|
|
422
|
+
padding: 4px 12px;
|
|
423
|
+
border-radius: 20px;
|
|
424
|
+
font-size: 0.9rem;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.mcp-description {
|
|
428
|
+
padding: 1.5rem;
|
|
429
|
+
color: var(--text-secondary);
|
|
430
|
+
border-bottom: 1px solid var(--border-color);
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.mcp-tools {
|
|
434
|
+
padding: 1.5rem;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.mcp-tools h4 {
|
|
438
|
+
margin-bottom: 1rem;
|
|
439
|
+
color: var(--text-primary);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.mcp-tools ul {
|
|
443
|
+
list-style: none;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.mcp-tools li {
|
|
447
|
+
padding: 0.5rem 0;
|
|
448
|
+
color: var(--text-secondary);
|
|
449
|
+
border-bottom: 1px solid var(--border-color);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.mcp-tools li:last-child {
|
|
453
|
+
border-bottom: none;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.mcp-tools code {
|
|
457
|
+
background: white;
|
|
458
|
+
padding: 2px 6px;
|
|
459
|
+
border-radius: 4px;
|
|
460
|
+
color: var(--primary-color);
|
|
461
|
+
font-weight: 500;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
/* How It Works */
|
|
465
|
+
.how-it-works {
|
|
466
|
+
padding: 80px 0;
|
|
467
|
+
background: var(--light-bg);
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.workflow-diagram {
|
|
471
|
+
display: flex;
|
|
472
|
+
justify-content: center;
|
|
473
|
+
align-items: center;
|
|
474
|
+
flex-wrap: wrap;
|
|
475
|
+
gap: 2rem;
|
|
476
|
+
margin-top: 3rem;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.workflow-step {
|
|
480
|
+
background: white;
|
|
481
|
+
padding: 2rem;
|
|
482
|
+
border-radius: 12px;
|
|
483
|
+
text-align: center;
|
|
484
|
+
flex: 1;
|
|
485
|
+
min-width: 200px;
|
|
486
|
+
max-width: 250px;
|
|
487
|
+
box-shadow: var(--shadow-md);
|
|
488
|
+
transition: all 0.3s ease;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.workflow-step:hover {
|
|
492
|
+
transform: translateY(-5px);
|
|
493
|
+
box-shadow: var(--shadow-lg);
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.step-number {
|
|
497
|
+
width: 50px;
|
|
498
|
+
height: 50px;
|
|
499
|
+
background: var(--gradient-secondary);
|
|
500
|
+
color: white;
|
|
501
|
+
border-radius: 50%;
|
|
502
|
+
display: flex;
|
|
503
|
+
align-items: center;
|
|
504
|
+
justify-content: center;
|
|
505
|
+
font-size: 1.5rem;
|
|
506
|
+
font-weight: 700;
|
|
507
|
+
margin: 0 auto 1rem;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.workflow-arrow {
|
|
511
|
+
font-size: 2rem;
|
|
512
|
+
color: var(--primary-color);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
/* Installation Section */
|
|
516
|
+
.installation {
|
|
517
|
+
padding: 80px 0;
|
|
518
|
+
background: white;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.install-tabs {
|
|
522
|
+
display: flex;
|
|
523
|
+
justify-content: center;
|
|
524
|
+
gap: 1rem;
|
|
525
|
+
margin-bottom: 2rem;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.tab-btn {
|
|
529
|
+
padding: 10px 30px;
|
|
530
|
+
background: var(--light-bg);
|
|
531
|
+
border: none;
|
|
532
|
+
border-radius: 25px;
|
|
533
|
+
cursor: pointer;
|
|
534
|
+
font-weight: 600;
|
|
535
|
+
transition: all 0.3s ease;
|
|
536
|
+
color: var(--text-primary);
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.tab-btn.active {
|
|
540
|
+
background: var(--gradient-secondary);
|
|
541
|
+
color: white;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.tab-btn:hover:not(.active) {
|
|
545
|
+
background: var(--border-color);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.tab-content {
|
|
549
|
+
display: none;
|
|
550
|
+
animation: fadeIn 0.5s ease;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.tab-content.active {
|
|
554
|
+
display: block;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
@keyframes fadeIn {
|
|
558
|
+
from { opacity: 0; transform: translateY(10px); }
|
|
559
|
+
to { opacity: 1; transform: translateY(0); }
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.tab-content h3 {
|
|
563
|
+
margin-bottom: 1.5rem;
|
|
564
|
+
color: var(--text-primary);
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
pre {
|
|
568
|
+
background: var(--dark-bg);
|
|
569
|
+
border-radius: 8px;
|
|
570
|
+
padding: 1.5rem;
|
|
571
|
+
overflow-x: auto;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
pre code {
|
|
575
|
+
color: #e6e6e6;
|
|
576
|
+
font-family: 'Fira Code', 'Courier New', monospace;
|
|
577
|
+
font-size: 0.95rem;
|
|
578
|
+
line-height: 1.6;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
/* Examples Section */
|
|
582
|
+
.examples {
|
|
583
|
+
padding: 80px 0;
|
|
584
|
+
background: var(--light-bg);
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.example-grid {
|
|
588
|
+
display: grid;
|
|
589
|
+
gap: 2rem;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.example-card {
|
|
593
|
+
background: white;
|
|
594
|
+
border-radius: 12px;
|
|
595
|
+
padding: 2rem;
|
|
596
|
+
box-shadow: var(--shadow-sm);
|
|
597
|
+
transition: all 0.3s ease;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.example-card:hover {
|
|
601
|
+
box-shadow: var(--shadow-lg);
|
|
602
|
+
transform: translateY(-5px);
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.example-card h3 {
|
|
606
|
+
margin-bottom: 1.5rem;
|
|
607
|
+
color: var(--text-primary);
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.user-examples {
|
|
611
|
+
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
612
|
+
border: 2px dashed var(--primary-color);
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.user-examples-placeholder {
|
|
616
|
+
text-align: center;
|
|
617
|
+
padding: 2rem;
|
|
618
|
+
color: var(--text-secondary);
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.example-template {
|
|
622
|
+
margin-top: 2rem;
|
|
623
|
+
text-align: left;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/* API Reference */
|
|
627
|
+
.api-reference {
|
|
628
|
+
padding: 80px 0;
|
|
629
|
+
background: white;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.api-categories {
|
|
633
|
+
display: grid;
|
|
634
|
+
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
|
635
|
+
gap: 3rem;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.api-category h3 {
|
|
639
|
+
margin-bottom: 1.5rem;
|
|
640
|
+
color: var(--text-primary);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.api-list {
|
|
644
|
+
list-style: none;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.api-list li {
|
|
648
|
+
padding: 0.8rem;
|
|
649
|
+
border-bottom: 1px solid var(--border-color);
|
|
650
|
+
transition: background 0.3s ease;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.api-list li:hover {
|
|
654
|
+
background: var(--light-bg);
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.api-list code {
|
|
658
|
+
background: var(--light-bg);
|
|
659
|
+
padding: 4px 8px;
|
|
660
|
+
border-radius: 4px;
|
|
661
|
+
color: var(--primary-color);
|
|
662
|
+
font-weight: 500;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
/* Best Practices */
|
|
666
|
+
.best-practices {
|
|
667
|
+
padding: 80px 0;
|
|
668
|
+
background: var(--light-bg);
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.practices-grid {
|
|
672
|
+
display: grid;
|
|
673
|
+
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
674
|
+
gap: 2rem;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.practice {
|
|
678
|
+
background: white;
|
|
679
|
+
padding: 2rem;
|
|
680
|
+
border-radius: 12px;
|
|
681
|
+
box-shadow: var(--shadow-sm);
|
|
682
|
+
transition: all 0.3s ease;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.practice:hover {
|
|
686
|
+
box-shadow: var(--shadow-lg);
|
|
687
|
+
transform: translateY(-5px);
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.practice h3 {
|
|
691
|
+
margin-bottom: 1rem;
|
|
692
|
+
color: var(--text-primary);
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.practice p {
|
|
696
|
+
color: var(--text-secondary);
|
|
697
|
+
line-height: 1.7;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
/* Footer */
|
|
701
|
+
.footer {
|
|
702
|
+
background: var(--dark-bg);
|
|
703
|
+
color: white;
|
|
704
|
+
padding: 60px 0 40px;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.footer-content {
|
|
708
|
+
display: grid;
|
|
709
|
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
710
|
+
gap: 3rem;
|
|
711
|
+
margin-bottom: 2rem;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.footer-section h4 {
|
|
715
|
+
margin-bottom: 1rem;
|
|
716
|
+
color: white;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.footer-section ul {
|
|
720
|
+
list-style: none;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.footer-section li {
|
|
724
|
+
margin-bottom: 0.5rem;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.footer-section a {
|
|
728
|
+
color: rgba(255,255,255,0.7);
|
|
729
|
+
text-decoration: none;
|
|
730
|
+
transition: color 0.3s ease;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.footer-section a:hover {
|
|
734
|
+
color: white;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.footer-logo {
|
|
738
|
+
font-size: 3rem;
|
|
739
|
+
margin-top: 1rem;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
/* Responsive Design */
|
|
743
|
+
@media (max-width: 768px) {
|
|
744
|
+
.nav-menu {
|
|
745
|
+
position: fixed;
|
|
746
|
+
left: -100%;
|
|
747
|
+
top: 70px;
|
|
748
|
+
flex-direction: column;
|
|
749
|
+
background: white;
|
|
750
|
+
width: 100%;
|
|
751
|
+
text-align: center;
|
|
752
|
+
transition: 0.3s;
|
|
753
|
+
box-shadow: var(--shadow-lg);
|
|
754
|
+
padding: 2rem 0;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.nav-menu.active {
|
|
758
|
+
left: 0;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.hamburger {
|
|
762
|
+
display: flex;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.hero-title {
|
|
766
|
+
font-size: 2.5rem;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.hero-subtitle {
|
|
770
|
+
font-size: 1.2rem;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.hero-stats {
|
|
774
|
+
flex-wrap: wrap;
|
|
775
|
+
gap: 2rem;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
.workflow-diagram {
|
|
779
|
+
flex-direction: column;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.workflow-arrow {
|
|
783
|
+
transform: rotate(90deg);
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.mcp-grid {
|
|
787
|
+
grid-template-columns: 1fr;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.api-categories {
|
|
791
|
+
grid-template-columns: 1fr;
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
/* Smooth Scrolling */
|
|
796
|
+
html {
|
|
797
|
+
scroll-behavior: smooth;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
/* Selection Colors */
|
|
801
|
+
::selection {
|
|
802
|
+
background: var(--primary-color);
|
|
803
|
+
color: white;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
::-moz-selection {
|
|
807
|
+
background: var(--primary-color);
|
|
808
|
+
color: white;
|
|
809
|
+
}
|