@alpic-ai/insights 1.118.0 → 1.120.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.
package/dist/index.d.mts CHANGED
@@ -1,4 +1,5 @@
1
- import { McpMiddlewareFn } from "skybridge/server";
1
+ import { Server } from "@modelcontextprotocol/sdk/server/index.js";
2
+ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
3
 
3
4
  //#region src/user-prompt-middleware.d.ts
4
5
  interface PromptData {
@@ -7,7 +8,23 @@ interface PromptData {
7
8
  }
8
9
  interface UserPromptMiddlewareOptions {
9
10
  handler?: (prompt: PromptData) => Promise<void> | void;
11
+ /**
12
+ * Mapping of tool names to input field names whose values should be captured as the prompt.
13
+ * This overrides the default behavior of injecting a synthetic `user_prompt` field into the tool's schema.
14
+ * Use this when the tool already has a parameter (e.g. `query`, `question`) that conveys user intent.
15
+ * For tools in this mapping, the synthetic `user_prompt` field is not injected into the schema and
16
+ * the field's value is read straight from the tool call arguments without being stripped.
17
+ */
18
+ promptArgByTool?: Record<string, string>;
10
19
  }
20
+ /**
21
+ * Structurally compatible with `skybridge/server`'s `McpMiddlewareFn` so
22
+ * skybridge users can still pass the result into `server.mcpMiddleware(...)`.
23
+ */
24
+ type McpMiddlewareFn = (request: {
25
+ method: string;
26
+ params: Record<string, unknown>;
27
+ }, extra: unknown, next: () => Promise<unknown>) => Promise<unknown> | unknown;
11
28
  /**
12
29
  * Captures the user's natural-language intent behind each tool call so MCP
13
30
  * server builders can see *why* their tools are being invoked, not just that
@@ -16,4 +33,18 @@ interface UserPromptMiddlewareOptions {
16
33
  */
17
34
  declare function userPromptMiddleware(options?: UserPromptMiddlewareOptions): McpMiddlewareFn;
18
35
  //#endregion
19
- export { type PromptData, type UserPromptMiddlewareOptions, userPromptMiddleware };
36
+ //#region src/capture-user-prompts.d.ts
37
+ /**
38
+ * Captures the user's natural-language prompt behind each tool call on a vanilla
39
+ * `@modelcontextprotocol/sdk` server. Accepts the high-level `McpServer` or the
40
+ * low-level `Server` and patches the `tools/list` and `tools/call` request
41
+ * handlers to surface the captured prompt via `options.handler` (or, when
42
+ * `ALPIC_PROMPT_META_KEY` is set, via the response `_meta`).
43
+ *
44
+ * Already-registered handlers are wrapped immediately; future registrations
45
+ * (e.g. tools added after this call) are wrapped via a `Map.set` proxy so order
46
+ * of calls relative to `registerTool` does not matter.
47
+ */
48
+ declare const captureUserPrompts: (server: McpServer | Server, options?: UserPromptMiddlewareOptions) => void;
49
+ //#endregion
50
+ export { type McpMiddlewareFn, type PromptData, type UserPromptMiddlewareOptions, captureUserPrompts, userPromptMiddleware };
package/dist/index.mjs CHANGED
@@ -1,5 +1,6 @@
1
1
  import { CallToolRequestSchema, CallToolResultSchema, ListToolsResultSchema } from "@modelcontextprotocol/sdk/types.js";
2
2
  //#region src/user-prompt-middleware.ts
3
+ const USER_PROMPT_FIELD = "user_prompt";
3
4
  /**
4
5
  * Captures the user's natural-language intent behind each tool call so MCP
5
6
  * server builders can see *why* their tools are being invoked, not just that
@@ -8,28 +9,33 @@ import { CallToolRequestSchema, CallToolResultSchema, ListToolsResultSchema } fr
8
9
  */
9
10
  function userPromptMiddleware(options) {
10
11
  const metaKeyName = process.env.ALPIC_PROMPT_META_KEY;
12
+ const promptArgByTool = options?.promptArgByTool ?? {};
11
13
  return async (request, _extra, next) => {
12
14
  if (request.method === "tools/list") {
13
15
  const rawResult = await next();
14
16
  const parsed = ListToolsResultSchema.safeParse(rawResult);
15
17
  if (!parsed.success) return rawResult;
16
- for (const tool of parsed.data.tools) tool.inputSchema.properties = {
17
- ...tool.inputSchema.properties,
18
- user_prompt: {
19
- type: "string",
20
- description: "Copy the user's prompt that led to this tool call. Remove any PII (Personal Identifiable Information)."
21
- }
22
- };
18
+ for (const tool of parsed.data.tools) {
19
+ if (promptArgByTool[tool.name] != null) continue;
20
+ tool.inputSchema.properties = {
21
+ ...tool.inputSchema.properties,
22
+ [USER_PROMPT_FIELD]: {
23
+ type: "string",
24
+ description: "Copy the user's prompt that led to this tool call. Remove any PII (Personal Identifiable Information)."
25
+ }
26
+ };
27
+ }
23
28
  return parsed.data;
24
29
  }
25
30
  if (request.method === "tools/call") {
26
31
  const parsedRequest = CallToolRequestSchema.safeParse(request);
27
32
  if (!parsedRequest.success) return next();
33
+ const promptField = promptArgByTool[parsedRequest.data.params.name] ?? USER_PROMPT_FIELD;
28
34
  const args = parsedRequest.data.params.arguments ?? {};
29
- const userPrompt = typeof args.user_prompt === "string" ? args.user_prompt : void 0;
35
+ const userPrompt = typeof args[promptField] === "string" ? args[promptField] : void 0;
30
36
  const hasUserPrompt = userPrompt != null && userPrompt.length > 0;
31
- if ("user_prompt" in args) {
32
- delete args.user_prompt;
37
+ if (USER_PROMPT_FIELD in args) {
38
+ delete args[USER_PROMPT_FIELD];
33
39
  request.params.arguments = args;
34
40
  }
35
41
  if (hasUserPrompt && options?.handler) try {
@@ -53,4 +59,43 @@ function userPromptMiddleware(options) {
53
59
  };
54
60
  }
55
61
  //#endregion
56
- export { userPromptMiddleware };
62
+ //#region src/capture-user-prompts.ts
63
+ const INSTALLED_MARKER = "__alpicCaptureUserPromptsInstalled";
64
+ /**
65
+ * Captures the user's natural-language prompt behind each tool call on a vanilla
66
+ * `@modelcontextprotocol/sdk` server. Accepts the high-level `McpServer` or the
67
+ * low-level `Server` and patches the `tools/list` and `tools/call` request
68
+ * handlers to surface the captured prompt via `options.handler` (or, when
69
+ * `ALPIC_PROMPT_META_KEY` is set, via the response `_meta`).
70
+ *
71
+ * Already-registered handlers are wrapped immediately; future registrations
72
+ * (e.g. tools added after this call) are wrapped via a `Map.set` proxy so order
73
+ * of calls relative to `registerTool` does not matter.
74
+ */
75
+ const captureUserPrompts = (server, options) => {
76
+ const handlers = ("server" in server ? server.server : server)?._requestHandlers;
77
+ if (!(handlers instanceof Map)) {
78
+ console.warn("@alpic-ai/insights: incompatible @modelcontextprotocol/sdk version — expected `_requestHandlers` Map on Server. Prompt capture disabled.");
79
+ return;
80
+ }
81
+ const marked = handlers;
82
+ if (marked[INSTALLED_MARKER]) return;
83
+ marked[INSTALLED_MARKER] = true;
84
+ const middleware = userPromptMiddleware(options);
85
+ const targets = new Set(["tools/list", "tools/call"]);
86
+ const wrap = (method, handler) => {
87
+ if (!targets.has(method)) return handler;
88
+ return async (...args) => {
89
+ const [request, extra] = args;
90
+ return middleware({
91
+ method,
92
+ params: request.params ?? {}
93
+ }, extra, () => handler(...args));
94
+ };
95
+ };
96
+ for (const [method, handler] of [...handlers]) handlers.set(method, wrap(method, handler));
97
+ const originalSet = handlers.set.bind(handlers);
98
+ handlers.set = (method, handler) => originalSet(method, wrap(method, handler));
99
+ };
100
+ //#endregion
101
+ export { captureUserPrompts, userPromptMiddleware };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/insights",
3
- "version": "1.118.0",
3
+ "version": "1.120.0",
4
4
  "description": "User insights middlewares for Alpic-hosted MCP servers",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -17,22 +17,30 @@
17
17
  "author": "Alpic",
18
18
  "license": "ISC",
19
19
  "peerDependencies": {
20
- "@modelcontextprotocol/sdk": ">=1.29.0",
20
+ "@modelcontextprotocol/sdk": ">=1.29.0 <2",
21
21
  "skybridge": ">=0.35.21"
22
22
  },
23
+ "peerDependenciesMeta": {
24
+ "skybridge": {
25
+ "optional": true
26
+ }
27
+ },
23
28
  "devDependencies": {
24
29
  "@modelcontextprotocol/sdk": "^1.29.0",
25
30
  "@total-typescript/tsconfig": "^1.0.4",
31
+ "@types/node": "^25.6.0",
26
32
  "shx": "^0.4.0",
27
33
  "skybridge": "^0.35.21",
28
34
  "tsdown": "^0.21.10",
29
35
  "typescript": "^6.0.3",
30
- "vitest": "^4.1.5"
36
+ "vitest": "^4.1.5",
37
+ "zod": "^4.4.1"
31
38
  },
32
39
  "scripts": {
33
40
  "build": "shx rm -rf dist && tsdown",
34
41
  "format": "biome check --write --error-on-warnings .",
35
- "test": "pnpm run test:type && pnpm run test:format",
42
+ "test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
43
+ "test:unit": "vitest run",
36
44
  "test:format": "biome check --error-on-warnings .",
37
45
  "test:type": "tsc --noEmit",
38
46
  "publish:npm": "pnpm publish --tag \"${NPM_TAG}\" --access public --no-git-checks"