/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/cli/src/commands/mcp/tools/onpush-zoneless-migration/send-debug-message.ts
13 строк
393 B
Charles Lyding
refactor(@angular/cli): migrate MCP server to @modelcontextprotocol/server v2
04 авг 2026, 09:55
04 авг 2026, 09:55
b81b880
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import type { ServerContext } from '@modelcontextprotocol/server'; export function sendDebugMessage(message: string, ctx: ServerContext): void { void ctx.mcpReq.log('debug', message); }