aiquila-mcp 0.2.18 → 0.3.1

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.
@@ -58,7 +58,7 @@ export const configureTool = {
58
58
  model: z
59
59
  .string()
60
60
  .optional()
61
- .describe("Claude model to use (e.g., 'claude-opus-4-6', 'claude-sonnet-4-5-20250929')"),
61
+ .describe("Claude model to use (e.g., 'claude-opus-4-7', 'claude-sonnet-4-6', 'claude-sonnet-4-5-20250929')"),
62
62
  maxTokens: z.number().optional().describe('Maximum tokens for responses (default: 4096)'),
63
63
  timeout: z.number().optional().describe('Request timeout in seconds (default: 60)'),
64
64
  }),
@@ -512,11 +512,11 @@ export const listEventsTool = {
512
512
  from: z
513
513
  .string()
514
514
  .optional()
515
- .describe('Start of time range in YYYYMMDD or YYYYMMDDTHHmmssZ format. Defaults to today.'),
515
+ .describe('Start of time range (ISO 8601, e.g. 2026-04-12 or 2026-04-12T09:00:00Z). Defaults to today.'),
516
516
  to: z
517
517
  .string()
518
518
  .optional()
519
- .describe('End of time range in YYYYMMDD or YYYYMMDDTHHmmssZ format. Defaults to 30 days from now.'),
519
+ .describe('End of time range (ISO 8601, e.g. 2026-04-12 or 2026-04-12T09:00:00Z). Defaults to 30 days from now.'),
520
520
  limit: z
521
521
  .number()
522
522
  .min(1)
@@ -535,8 +535,8 @@ export const listEventsTool = {
535
535
  defaultFrom.setHours(0, 0, 0, 0);
536
536
  const defaultTo = new Date(now);
537
537
  defaultTo.setDate(defaultTo.getDate() + 30);
538
- const fromStr = args.from || toICalDateTime(defaultFrom.toISOString());
539
- const toStr = args.to || toICalDateTime(defaultTo.toISOString());
538
+ const fromStr = toICalDateTime(args.from || defaultFrom.toISOString());
539
+ const toStr = toICalDateTime(args.to || defaultTo.toISOString());
540
540
  const reportBody = `<?xml version="1.0" encoding="UTF-8"?>
541
541
  <c:calendar-query xmlns:d="DAV:" xmlns:c="urn:ietf:params:xml:ns:caldav">
542
542
  <d:prop>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiquila-mcp",
3
- "version": "0.2.18",
3
+ "version": "0.3.1",
4
4
  "description": "AIquila - MCP server for Nextcloud integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -37,10 +37,11 @@
37
37
  "dist/"
38
38
  ],
39
39
  "overrides": {
40
- "brace-expansion": "^2.0.3"
40
+ "brace-expansion": "^2.0.3",
41
+ "hono": "^4.12.14"
41
42
  },
42
43
  "dependencies": {
43
- "@modelcontextprotocol/sdk": "^1.28.0",
44
+ "@modelcontextprotocol/sdk": "^1.29.0",
44
45
  "jose": "^6.2.2",
45
46
  "pino": "^10.3.1",
46
47
  "typescript": "^5.8.3",