Fix weird type recursion in MCP plugin

This commit is contained in:
Gregory Schier
2026-01-04 15:46:05 -08:00
parent 4f7e67b106
commit 4b54c22012
5 changed files with 438 additions and 544 deletions

View File

@@ -8,7 +8,6 @@ export function registerWindowTools(server: McpServer, ctx: McpServerContext) {
{
title: 'Get Workspace ID',
description: 'Get the current workspace ID',
inputSchema: {},
},
async () => {
const workspaceCtx = await getWorkspaceContext(ctx);
@@ -30,7 +29,6 @@ export function registerWindowTools(server: McpServer, ctx: McpServerContext) {
{
title: 'Get Environment ID',
description: 'Get the current environment ID',
inputSchema: {},
},
async () => {
const workspaceCtx = await getWorkspaceContext(ctx);