min-agent 0.7.6 → 0.7.8

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": "min-agent",
3
- "version": "0.7.6",
3
+ "version": "0.7.8",
4
4
  "type": "module",
5
5
  "description": "Minimal AI coding agent with tool use, MCP, and skills support",
6
6
  "license": "MIT",
@@ -46,9 +46,9 @@ Write `{ "mcpServers": { "<name>": { ... } } }`.
46
46
  - Remote: `"url": "https://..."`. Optional `token`, `headers`, `remoteTransport` (`auto` default, or `streamable-http` / `sse`), `oauth` (`{}` to login in a browser, or `false` to disable).
47
47
  - `enabled: false` disables without deleting. Project `.min-agent/mcp.json` wins on the same name.
48
48
 
49
- CLI (user shell, not a substitute for writing the file in this session): `min-agent mcp add|list|info|enable|disable|remove|check` with `--project` for repo scope.
49
+ CLI (user shell, not a substitute for writing the file in this session): `min-agent mcp add|update|list|info|enable|disable|remove|check` with `--project` for repo scope. `update` only changes the fields you pass (`--token ""` removes the token, `--env`/`--headers` merge, a new command switches the server to stdio and clears remote fields).
50
50
 
51
- **This session:** editing `mcp.json` is persisted, but connected servers will not change until the user restarts. Say so after you write the file. HTTP `POST /v1/mcp` on a running `min-agent serve` reconnects; a coding session does not.
51
+ **This session:** editing `mcp.json` is persisted, but connected servers will not change until the user restarts. Say so after you write the file. HTTP `POST /v1/mcp` / `PATCH /v1/mcp/:name` on a running `min-agent serve` reconnects; a coding session does not.
52
52
 
53
53
  Connected servers already expose `mcp_list_resources`, `mcp_read_resource`, `mcp_list_prompts`, `mcp_get_prompt`. Do not invent per-resource tools.
54
54