@toolsdk.ai/registry 1.0.89 → 1.0.91
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/README.md +3783 -3783
- package/dist/helper.js +6 -0
- package/indexes/categories-list.json +3767 -3767
- package/indexes/packages-list.json +27 -147
- package/package.json +4 -4
- package/packages/browser-automation/kwp-lab-mcp-fetch.json +10 -0
- package/packages/data-science-tools/antv-mcp-server-chart.json +3 -2
- package/packages/databases/kevinwatt-mysql-mcp.json +1 -1
- package/packages/knowledge-memory/mem0-mcp-server.json +16 -0
- package/packages/browser-automation/executeautomation-playwright-mcp-server.json +0 -10
- package/packages/search-data-extraction/mcp-server-google-search-mcp.json +0 -10
package/dist/helper.js
CHANGED
|
@@ -139,6 +139,12 @@ function updatePackageJsonDependencies({ packageDeps, enableValidation = false,
|
|
|
139
139
|
newDeps[depName] = depVer || 'latest';
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
|
+
const blacklistDeps = new Set(['@mcp-server/google-search-mcp', '@executeautomation/playwright-mcp-server']);
|
|
143
|
+
for (const dep of blacklistDeps) {
|
|
144
|
+
if (newDeps[dep]) {
|
|
145
|
+
delete newDeps[dep];
|
|
146
|
+
}
|
|
147
|
+
}
|
|
142
148
|
const packageJSON = JSON.parse(packageJSONStr);
|
|
143
149
|
packageJSON.dependencies = newDeps;
|
|
144
150
|
fs_1.default.writeFileSync(packageJsonFile, JSON.stringify(packageJSON, null, 2), 'utf-8');
|