machine-bridge-mcp 0.12.1 → 0.13.0

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.
@@ -57,7 +57,7 @@
57
57
  {
58
58
  "name": "resolve_task_capabilities",
59
59
  "title": "Resolve task capabilities",
60
- "description": "Rescan built-in and automatic project context, local instruction files, skills, registered commands, applications, and browser capability metadata; rank the capabilities relevant to the current task and optionally load the best skill.",
60
+ "description": "Rescan built-in and automatic project context, local instruction files, skills, explicit and automatic package commands, installed applications, and browser capability metadata; rank the capabilities relevant to the current task and optionally load the best skill.",
61
61
  "availability": "always",
62
62
  "annotations": {
63
63
  "readOnlyHint": true,
@@ -897,7 +897,7 @@
897
897
  {
898
898
  "name": "agent_context",
899
899
  "title": "Load agent context",
900
- "description": "Discover built-in defaults, bounded automatic project facts, Codex-compatible global/root-to-target instruction precedence, progressively disclosed local skills, and registered commands for a target path.",
900
+ "description": "Discover built-in defaults, bounded automatic project facts, Codex-compatible global/root-to-target instruction precedence, progressively disclosed local skills, explicit commands, and safe automatic package-script command aliases for a target path.",
901
901
  "availability": "always",
902
902
  "annotations": {
903
903
  "readOnlyHint": true,
@@ -1001,7 +1001,7 @@
1001
1001
  {
1002
1002
  "name": "list_local_commands",
1003
1003
  "title": "List registered local commands",
1004
- "description": "List commands registered by hierarchical .machine-bridge/agent.json manifests for the selected target path.",
1004
+ "description": "List effective direct-argv commands from project manifests and safe automatic package-script aliases, including provenance and timeout limits.",
1005
1005
  "availability": "always",
1006
1006
  "annotations": {
1007
1007
  "readOnlyHint": true,
@@ -1024,7 +1024,7 @@
1024
1024
  {
1025
1025
  "name": "run_local_command",
1026
1026
  "title": "Run registered local command",
1027
- "description": "Execute a named command registered in .machine-bridge/agent.json as a direct argv process without shell parsing. Manifest timeout and argument policy remain authoritative.",
1027
+ "description": "Run an effective manifest or automatic package-script command through its fixed argv, cwd, timeout ceiling, and extra-argument policy.",
1028
1028
  "availability": "direct-exec",
1029
1029
  "annotations": {
1030
1030
  "readOnlyHint": false,
@@ -3,7 +3,7 @@ import toolCatalog from "../shared/tool-catalog.json";
3
3
  import serverMetadata from "../shared/server-metadata.json";
4
4
 
5
5
  const SERVER_NAME = String(serverMetadata.name);
6
- const SERVER_VERSION = "0.12.1";
6
+ const SERVER_VERSION = "0.13.0";
7
7
  const MCP_PROTOCOL_VERSION = String(serverMetadata.protocolVersion);
8
8
  const MCP_SUPPORTED_PROTOCOL_VERSIONS = serverMetadata.supportedProtocolVersions.map((value) => String(value));
9
9
  const JSONRPC_VERSION = "2.0";