@aiwerk/mcp-bridge 2.8.17 → 2.8.19
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/src/mcp-router.d.ts +10 -0
- package/dist/src/mcp-router.js +10 -0
- package/package.json +1 -1
package/dist/src/mcp-router.d.ts
CHANGED
|
@@ -83,6 +83,11 @@ export type RouterDispatchResponse = {
|
|
|
83
83
|
description: string;
|
|
84
84
|
category?: string;
|
|
85
85
|
auth?: string;
|
|
86
|
+
origin?: string;
|
|
87
|
+
maturity?: string;
|
|
88
|
+
sideEffects?: string;
|
|
89
|
+
pricing?: string;
|
|
90
|
+
signed?: boolean;
|
|
86
91
|
}>;
|
|
87
92
|
} | {
|
|
88
93
|
action: "catalog";
|
|
@@ -92,6 +97,11 @@ export type RouterDispatchResponse = {
|
|
|
92
97
|
description: string;
|
|
93
98
|
category?: string;
|
|
94
99
|
auth?: string;
|
|
100
|
+
origin?: string;
|
|
101
|
+
maturity?: string;
|
|
102
|
+
sideEffects?: string;
|
|
103
|
+
pricing?: string;
|
|
104
|
+
signed?: boolean;
|
|
95
105
|
}>;
|
|
96
106
|
} | {
|
|
97
107
|
action: "install";
|
package/dist/src/mcp-router.js
CHANGED
|
@@ -120,6 +120,11 @@ export class McpRouter {
|
|
|
120
120
|
description: r.description || "",
|
|
121
121
|
category: r.category,
|
|
122
122
|
auth: r.authSummary || (r.authRequired ? "required" : "none"),
|
|
123
|
+
origin: r.origin,
|
|
124
|
+
maturity: r.maturity,
|
|
125
|
+
sideEffects: r.sideEffects,
|
|
126
|
+
pricing: r.pricing,
|
|
127
|
+
signed: Array.isArray(r.badges) ? r.badges.includes("signed") : false,
|
|
123
128
|
}))
|
|
124
129
|
};
|
|
125
130
|
}
|
|
@@ -142,6 +147,11 @@ export class McpRouter {
|
|
|
142
147
|
description: r.description || "",
|
|
143
148
|
category: r.category,
|
|
144
149
|
auth: r.authSummary || (r.authRequired ? "required" : "none"),
|
|
150
|
+
origin: r.origin,
|
|
151
|
+
maturity: r.maturity,
|
|
152
|
+
sideEffects: r.sideEffects,
|
|
153
|
+
pricing: r.pricing,
|
|
154
|
+
signed: Array.isArray(r.badges) ? r.badges.includes("signed") : false,
|
|
145
155
|
}))
|
|
146
156
|
};
|
|
147
157
|
}
|