apteva 0.4.3 → 0.4.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apteva",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Run AI agents locally. Multi-provider support for Claude, GPT, Gemini, Llama, and more.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/routes/api.ts CHANGED
@@ -2839,9 +2839,12 @@ Keep responses short and actionable. Use markdown formatting when helpful.`,
2839
2839
  if (body.name !== undefined) updates.name = body.name;
2840
2840
  if (body.type !== undefined) updates.type = body.type;
2841
2841
  if (body.package !== undefined) updates.package = body.package;
2842
+ if (body.pip_module !== undefined) updates.pip_module = body.pip_module;
2842
2843
  if (body.command !== undefined) updates.command = body.command;
2843
2844
  if (body.args !== undefined) updates.args = body.args;
2844
2845
  if (body.env !== undefined) updates.env = body.env;
2846
+ if (body.url !== undefined) updates.url = body.url;
2847
+ if (body.headers !== undefined) updates.headers = body.headers;
2845
2848
  if (body.project_id !== undefined) updates.project_id = body.project_id;
2846
2849
 
2847
2850
  const updated = McpServerDB.update(mcpServerMatch[1], updates);