UNPKG

@pedrocid/music-mcp

Version:

MCP server for controlling Apple Music on macOS (v1.0.5)

15 lines 461 B
import { Tool } from '@modelcontextprotocol/sdk/types.js'; export interface InfoInput { command: 'info'; } export interface InfoOutput { version: string; musicAppAvailable: boolean; appleScriptAvailable: boolean; loggerPath: string; loggerStatus: 'ok' | 'error'; configurationIssues: string[]; } export declare const infoTool: Tool; export declare function handleInfoCommand(): Promise<InfoOutput>; //# sourceMappingURL=info.d.ts.map