body method

  1. @override
DynamicMap body(
  1. ExecContext context
)
override

Defines the actual body code.

実際の本体コードを定義します。

Implementation

@override
DynamicMap body(ExecContext context) {
  return {
    "firebase": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "firebase-tools@latest", "experimental:mcp"],
      "env": {}
    }
  };
}