-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathshortcuts.ts
More file actions
452 lines (393 loc) · 13.6 KB
/
Copy pathshortcuts.ts
File metadata and controls
452 lines (393 loc) · 13.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import {
CallToolRequestSchema,
ListToolsRequestSchema,
ErrorCode,
ListResourcesRequestSchema,
ListPromptsRequestSchema,
McpError,
Tool,
ToolSchema,
} from "@modelcontextprotocol/sdk/types.js";
import { z } from "zod";
import { spawn, type ChildProcessWithoutNullStreams } from "child_process";
import { zodToJsonSchema } from "zod-to-json-schema";
import path from "path";
import fs from "fs";
import os from "os";
// Configuration from environment variables
const GENERATE_SHORTCUT_TOOLS = process.env.GENERATE_SHORTCUT_TOOLS !== "false";
const INJECT_SHORTCUT_LIST = process.env.INJECT_SHORTCUT_LIST === "true";
const ToolInputSchema = ToolSchema.shape.inputSchema;
type ToolInput = z.infer<typeof ToolInputSchema>;
/* Input schemas for tools implemented in this server */
const ListShortcutsSchema = z.object({}).strict();
const OpenShortcutSchema = z
.object({
name: z.string().describe("The name of the shortcut to open"),
})
.strict();
const RunShortcutSchema = z
.object({
name: z.string().describe("The name or identifier (UUID) of the shortcut to run"),
input: z
.string()
.optional()
.describe(
"The input to pass to the shortcut. Can be text, or a filepath",
),
})
.strict();
enum ToolName {
LIST_SHORTCUTS = "list_shortcuts",
OPEN_SHORTCUT = "open_shortcut",
RUN_SHORTCUT = "run_shortcut",
}
type OpenShortcutInput = z.infer<typeof OpenShortcutSchema>;
type RunShortcutInput = z.infer<typeof RunShortcutSchema>;
// Map to store shortcut names and their sanitized IDs
const shortcutMap = new Map<string, string>();
// Map to store shortcut names and their identifiers (UUIDs)
const shortcutIdentifierMap = new Map<string, string>();
// Helper function to generate unique sanitized names to avoid conflicts
export const generateUniqueSanitizedName = (originalName: string, existingSanitizedNames: Set<string>): string => {
let baseSanitized = sanitizeShortcutName(originalName);
let uniqueSanitized = baseSanitized;
let counter = 1;
// Check if this sanitized name already exists, if so add a counter
while (existingSanitizedNames.has(uniqueSanitized)) {
const suffix = `_${counter}`;
const maxLength = 64 - "run_shortcut_".length;
// Ensure the base name + suffix doesn't exceed the limit
if (baseSanitized.length + suffix.length > maxLength) {
const truncatedBase = baseSanitized.substring(0, maxLength - suffix.length);
uniqueSanitized = truncatedBase + suffix;
} else {
uniqueSanitized = baseSanitized + suffix;
}
counter++;
}
return uniqueSanitized;
};
type ToolResult = { [key: string]: any };
type ShortcutSpawn = (
command: string,
args: string[],
options: { shell: false },
) => ChildProcessWithoutNullStreams;
const executeShortcutCommand = (
args: string[],
action: string,
spawnProcess: ShortcutSpawn = spawn as ShortcutSpawn,
): Promise<{ stdout: string; stderr: string }> => {
return new Promise((resolve, reject) => {
const child = spawnProcess("shortcuts", args, { shell: false });
let stdout = "";
let stderr = "";
child.stdout.on("data", (data) => {
stdout += data.toString();
});
child.stderr.on("data", (data) => {
stderr += data.toString();
});
child.once("error", (error) => {
reject(
new McpError(
ErrorCode.InternalError,
`Failed to ${action}: ${error.message}`,
),
);
});
child.once("close", (code) => {
if (code !== 0) {
reject(
new McpError(
ErrorCode.InternalError,
`Failed to ${action}: process exited with code ${code}. ${stderr}`,
),
);
return;
}
resolve({ stdout, stderr });
});
});
};
// Function to execute the list_shortcuts tool
const listShortcuts = async (): Promise<ToolResult> => {
const { stdout } = await executeShortcutCommand(
["list", "--show-identifiers"],
"list shortcuts",
);
// Parse output with identifiers format: "Name (UUID)"
const shortcuts = stdout
.split("\n")
.filter((line) => line.trim())
.map((line) => {
const trimmed = line.trim();
// Extract name and identifier if present
const match = trimmed.match(/^(.+?)\s*\(([A-F0-9-]+)\)$/);
if (match) {
return {
name: match[1].trim(),
identifier: match[2]
};
}
return { name: trimmed };
});
// Update the shortcut map with unique sanitized names
const existingSanitizedNames = new Set<string>();
shortcuts.forEach((shortcut) => {
const uniqueSanitizedName = generateUniqueSanitizedName(shortcut.name, existingSanitizedNames);
shortcutMap.set(shortcut.name, uniqueSanitizedName);
existingSanitizedNames.add(uniqueSanitizedName);
// Store identifier if present
if ('identifier' in shortcut && shortcut.identifier) {
shortcutIdentifierMap.set(shortcut.name, shortcut.identifier);
}
});
return { shortcuts };
};
// Function to execute the open_shortcut tool
const openShortcut = async (params: OpenShortcutInput): Promise<ToolResult> => {
await executeShortcutCommand(["view", params.name], "open shortcut");
return { success: true, message: `Opened shortcut: ${params.name}` };
};
// Function to execute the run_shortcut tool
export const runShortcut = async (
params: RunShortcutInput,
spawnProcess: ShortcutSpawn = spawn as ShortcutSpawn,
): Promise<ToolResult> => {
const input = params.input ?? " ";
const isFilePath =
path.isAbsolute(input) || input.startsWith("./") || input.startsWith("../");
let temporaryDirectory: string | undefined;
try {
let inputPath = input;
if (isFilePath) {
if (!fs.existsSync(inputPath)) {
throw new McpError(
ErrorCode.InvalidParams,
`Input file does not exist: ${inputPath}`,
);
}
} else {
temporaryDirectory = fs.mkdtempSync(
path.join(os.tmpdir(), "mcp-siri-shortcuts-"),
);
inputPath = path.join(temporaryDirectory, "input");
fs.writeFileSync(inputPath, input, { flag: "wx", mode: 0o600 });
}
const args = ["run", params.name, "--input-path", inputPath];
console.error("Running command: shortcuts", args.join(" "));
const { stdout } = await executeShortcutCommand(
args,
"run shortcut",
spawnProcess,
);
if (stdout.trim()) {
return { success: true, output: stdout.trim() };
}
return { success: true, message: `Ran shortcut: ${params.name}` };
} finally {
if (temporaryDirectory) {
fs.rmSync(temporaryDirectory, { recursive: true, force: true });
}
}
};
// Function to sanitize shortcut names for use in command names
export const sanitizeShortcutName = (name: string): string => {
const prefix = "run_shortcut_";
const maxToolNameLength = 64;
const maxSanitizedLength = maxToolNameLength - prefix.length;
let sanitized = name
.toLowerCase()
.replace(/[^a-z0-9_]/g, "_") // Replace non-alphanumeric chars with underscores
.replace(/_+/g, "_") // Replace multiple underscores with a single one
.replace(/^_|_$/g, ""); // Remove leading/trailing underscores
// Truncate if necessary to ensure total tool name length doesn't exceed 64 characters
if (sanitized.length > maxSanitizedLength) {
sanitized = sanitized.substring(0, maxSanitizedLength);
// Remove trailing underscore if truncation resulted in one
sanitized = sanitized.replace(/_$/, "");
}
return sanitized;
};
// Function to fetch all shortcuts and populate the shortcut map
const initializeShortcuts = async (): Promise<void> => {
console.error("Initializing shortcuts...");
try {
await listShortcuts();
} catch (err) {
console.error("Error initializing shortcuts:", err);
}
console.error(`Initialized ${shortcutMap.size} shortcuts`);
};
export const createServer = () => {
const server = new Server(
{
name: "siri-shortcuts-mcp",
version: "0.1.0",
},
{
capabilities: {
tools: {},
resources: {},
prompts: {},
},
},
);
// Initialize the base tools
const getBaseTools = (): Tool[] => {
let runShortcutDescription = "Run a shortcut by name or identifier (UUID) with optional input and output parameters";
// Conditionally inject shortcut list into the description
if (INJECT_SHORTCUT_LIST && shortcutMap.size > 0) {
const shortcutList = Array.from(shortcutMap.keys())
.map(name => {
const identifier = shortcutIdentifierMap.get(name);
if (identifier) {
return `- "${name}" (${identifier})`;
}
return `- "${name}"`;
})
.join('\n');
runShortcutDescription += `\n\nAvailable shortcuts:\n${shortcutList}`;
}
return [
{
name: ToolName.LIST_SHORTCUTS,
description: "List all available Siri shortcuts",
inputSchema: zodToJsonSchema(ListShortcutsSchema) as ToolInput,
run: listShortcuts,
},
{
name: ToolName.OPEN_SHORTCUT,
description: "Open a shortcut in the Shortcuts app",
inputSchema: zodToJsonSchema(OpenShortcutSchema) as ToolInput,
run: (params: any) => openShortcut(params as OpenShortcutInput),
},
{
name: ToolName.RUN_SHORTCUT,
description: runShortcutDescription,
inputSchema: zodToJsonSchema(RunShortcutSchema) as ToolInput,
run: (params: any) => runShortcut(params as RunShortcutInput),
},
];
};
// Generate dynamic tools for each shortcut
const getDynamicShortcutTools = (): Tool[] => {
const dynamicTools: Tool[] = [];
shortcutMap.forEach((sanitizedName, shortcutName) => {
const toolName = `run_shortcut_${sanitizedName}`;
dynamicTools.push({
name: toolName,
description: `Run the "${shortcutName}" shortcut`,
inputSchema: {
type: "object",
properties: {
input: {
type: "string",
description:
"The input to pass to the shortcut. Can be text, or a filepath",
},
},
} as ToolInput,
run: (params: any) =>
runShortcut({ name: shortcutName, input: params.input }),
});
});
return dynamicTools;
};
server.setRequestHandler(ListToolsRequestSchema, async () => {
const tools: Tool[] = [...getBaseTools()];
// Conditionally add dynamic shortcut tools
if (GENERATE_SHORTCUT_TOOLS) {
tools.push(...getDynamicShortcutTools());
}
return { tools };
});
// Handle resources/list requests (even though we don't have any resources)
server.setRequestHandler(ListResourcesRequestSchema, async () => {
return { resources: [] };
});
// Handle prompts/list requests (even though we don't have any prompts)
server.setRequestHandler(ListPromptsRequestSchema, async () => {
return { prompts: [] };
});
server.setRequestHandler(CallToolRequestSchema, async (request) => {
const { name, arguments: args = {} } = request.params;
// Check if it's a base tool
const isBaseTool = [
ToolName.LIST_SHORTCUTS,
ToolName.OPEN_SHORTCUT,
ToolName.RUN_SHORTCUT,
].includes(name as ToolName);
// Check if it's a dynamic shortcut tool
const isDynamicTool =
GENERATE_SHORTCUT_TOOLS &&
typeof name === "string" && name.startsWith("run_shortcut_");
// If it's neither a base tool nor a dynamic tool, throw an error
if (!isBaseTool && !isDynamicTool) {
throw new McpError(ErrorCode.MethodNotFound, `Unknown tool: ${name}`);
}
try {
let result: ToolResult | undefined;
// Execute the appropriate tool based on the name
switch (name as ToolName) {
case ToolName.LIST_SHORTCUTS:
result = await listShortcuts();
break;
case ToolName.OPEN_SHORTCUT:
result = await openShortcut(args as OpenShortcutInput);
break;
case ToolName.RUN_SHORTCUT:
result = await runShortcut(args as RunShortcutInput);
break;
default:
// Handle dynamic shortcut tools
if (isDynamicTool) {
// Extract the shortcut name from the map based on the sanitized name
const sanitizedName = name.replace("run_shortcut_", "");
const shortcutName = Array.from(shortcutMap.entries()).find(
([_, value]) => value === sanitizedName,
)?.[0];
if (!shortcutName) {
throw new McpError(
ErrorCode.InvalidParams,
`No shortcut found for sanitized name: ${sanitizedName}`,
);
}
// Safely extract input from args
const input =
args && typeof args === "object" && "input" in args
? String(args.input)
: undefined;
result = await runShortcut({ name: shortcutName, input });
} else {
throw new McpError(
ErrorCode.MethodNotFound,
`Unknown tool: ${name}`,
);
}
}
return {
content: [
{
type: "text",
text: JSON.stringify(result, null, 2),
},
],
};
} catch (error) {
// Re-throw any errors that occur during execution
throw error instanceof McpError
? error
: new McpError(
ErrorCode.InternalError,
error instanceof Error ? error.message : String(error),
);
}
});
// Initialize shortcuts when the server starts
initializeShortcuts();
return { server, cleanup: async () => {} };
};