conduyt-mcp 4.26.0 → 4.27.0

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.
@@ -124,6 +124,19 @@ export function registerAiExtendedTools(server, client) {
124
124
  const result = await client.post(`/api/v1/dialer/call/${callId}/ai-disposition`, {});
125
125
  return formatResult(result);
126
126
  });
127
+ server.tool("conduyt_ai_agenda", "The copilot's Today agenda for a user: what is on their calendar today (tenant timezone), callbacks they promised, messages waiting for a reply, overdue and due-today tasks, untouched new leads, recent-call follow-ups and deals going quiet — every visibility and opt-out rule applied — with a short brief on top (composed by the account's AI engine when available, otherwise a deterministic sentence built from the counts). Read-only.", {
128
+ userId: z.string().optional().describe("User UUID to build the agenda for (admins/owners only; defaults to the authenticated user)"),
129
+ narrative: z.boolean().optional().describe("false = skip the AI-composed brief and return the deterministic one (spends no AI budget)"),
130
+ }, async ({ userId, narrative }) => {
131
+ const params = new URLSearchParams();
132
+ if (userId)
133
+ params.set("userId", userId);
134
+ if (narrative === false)
135
+ params.set("narrative", "0");
136
+ const qs = params.toString();
137
+ const result = await client.get(`/api/v1/ai/agenda${qs ? `?${qs}` : ""}`);
138
+ return formatResult(result);
139
+ });
127
140
  server.tool("conduyt_ai_daily_brief", "AI-generated daily brief for the current user. Summarizes today's priorities — deals needing attention, overdue tasks, hot leads, and recommended focus.", {}, async () => {
128
141
  const result = await client.get("/api/v1/ai/daily-brief");
129
142
  return formatResult(result);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conduyt-mcp",
3
- "version": "4.26.0",
3
+ "version": "4.27.0",
4
4
  "description": "MCP server for Conduyt CRM — expose CRM operations as AI-accessible tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,11 +1,11 @@
1
1
  {
2
- "generatedAt": "2026-09-06T00:25:42.269Z",
3
- "toolCount": 209,
4
- "totalEndpoints": 911,
2
+ "generatedAt": "2026-09-06T04:07:11.872Z",
3
+ "toolCount": 210,
4
+ "totalEndpoints": 912,
5
5
  "counts": {
6
6
  "covered": 194,
7
7
  "excluded": 274,
8
- "planned": 443,
8
+ "planned": 444,
9
9
  "uncategorized": 0
10
10
  },
11
11
  "matrix": {
@@ -309,6 +309,10 @@
309
309
  "status": "excluded",
310
310
  "reason": "super-admin platform operations (Conduyt staff only)"
311
311
  },
312
+ "GET /api/v1/ai/agenda": {
313
+ "status": "planned",
314
+ "reason": "AI surfaces beyond chat/insights/tasks tools"
315
+ },
312
316
  "POST /api/v1/ai/chat": {
313
317
  "status": "covered",
314
318
  "tools": [