firebase-tools
Version:
Command-Line Interface for Firebase
12 lines (11 loc) • 516 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.command = void 0;
const command_1 = require("../command");
const requireAuth_1 = require("../requireAuth");
exports.command = new command_1.Command("experimental:mcp")
.description("Start an MCP server with access to the current working directory's project and resources.")
.before(requireAuth_1.requireAuth)
.action(() => {
throw new Error("MCP logic is implemented elsewhere, this should never be reached.");
});
;