diff --git a/src/types/index.ts b/src/types/index.ts index 007cf0c..776a424 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -152,8 +152,7 @@ export const imageToolSchema = z.object({ "- Versatile Targeting: Use `app_target` to specify what to capture (see `app_target` parameter description for examples).\n" + "- Analysis Integration: Provide a `question` to have the captured image analyzed by an AI model (selected from the `PEEKABOO_AI_PROVIDERS` environment variable).\n" + "- Output Options: Save as 'png' or 'jpg', or get 'data' (Base64 PNG). The format defaults to 'data' if `path` is omitted.\n" + - "- Window Handling: Window shadows and frames are excluded from captures.\n\n" + - `- Peekaboo MCP ${process.env.npm_package_version || 'VERSION_UNKNOWN'} using ${process.env.PEEKABOO_AI_PROVIDERS || 'AI_PROVIDERS_NOT_SET'}` + "- Window Handling: Window shadows and frames are excluded from captures." ); export type ImageInput = z.infer; diff --git a/src/utils/server-status.ts b/src/utils/server-status.ts index ff5442b..4cf6062 100644 --- a/src/utils/server-status.ts +++ b/src/utils/server-status.ts @@ -10,10 +10,5 @@ export function generateServerStatusString(version: string): string { providersText = providers.join(", "); } - return ` ---- Peekaboo MCP Server Status --- -Name: PeekabooMCP -Version: ${version} -Configured AI Providers (from PEEKABOO_AI_PROVIDERS ENV): ${providersText} ----`.trim(); + return `\n- Peekaboo MCP ${version} using ${providersText}`.trim(); }