@ateam-ai/mcp 0.3.29 → 0.3.30

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tools.js +24 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ateam-ai/mcp",
3
- "version": "0.3.29",
3
+ "version": "0.3.30",
4
4
  "mcpName": "io.github.ariekogan/ateam-mcp",
5
5
  "description": "A-Team MCP Server — build, validate, and deploy multi-agent solutions from any AI environment",
6
6
  "type": "module",
package/src/tools.js CHANGED
@@ -391,6 +391,26 @@ export const tools = [
391
391
  required: ["solution_id"],
392
392
  },
393
393
  },
394
+ {
395
+ name: "ateam_delete_skill",
396
+ core: true,
397
+ description:
398
+ "Delete a single skill from a deployed solution. Removes the skill from A-Team Core (kills the running MCP process, unregisters from skill registry, deletes from Mongo), removes the skill from solution.skills[] and solution.linked_skills, and deletes the skill's files from Builder FS. Use this to drop a skill without tearing down the whole solution.",
399
+ inputSchema: {
400
+ type: "object",
401
+ properties: {
402
+ solution_id: {
403
+ type: "string",
404
+ description: "The solution ID (e.g. 'personal-adas')",
405
+ },
406
+ skill_id: {
407
+ type: "string",
408
+ description: "The skill ID to remove (e.g. 'linkedin-agent')",
409
+ },
410
+ },
411
+ required: ["solution_id", "skill_id"],
412
+ },
413
+ },
394
414
  {
395
415
  name: "ateam_delete_connector",
396
416
  core: true,
@@ -1148,6 +1168,7 @@ const TENANT_TOOLS = new Set([
1148
1168
  "ateam_update",
1149
1169
  "ateam_redeploy",
1150
1170
  "ateam_delete_solution",
1171
+ "ateam_delete_skill",
1151
1172
  "ateam_delete_connector",
1152
1173
  "ateam_upload_connector",
1153
1174
  "ateam_solution_chat",
@@ -2224,6 +2245,9 @@ const handlers = {
2224
2245
  ateam_delete_solution: async ({ solution_id }, sid) =>
2225
2246
  del(`/deploy/solutions/${solution_id}`, sid),
2226
2247
 
2248
+ ateam_delete_skill: async ({ solution_id, skill_id }, sid) =>
2249
+ del(`/deploy/solutions/${solution_id}/skills/${skill_id}`, sid),
2250
+
2227
2251
  ateam_delete_connector: async ({ solution_id, connector_id }, sid) =>
2228
2252
  del(`/deploy/solutions/${solution_id}/connectors/${connector_id}`, sid),
2229
2253