We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nrwl/nx-console'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ide-provider.ts•738 B
import { RunningTasksMap } from '@nx-console/shared-running-tasks';
/**
* Interface for IDE integration that supports both direct VSCode callbacks
* and JSON-RPC communication with standalone IDE processes
*/
export interface IdeProvider {
/**
* Check if IDE is currently available/connected
*/
isAvailable(): boolean;
focusProject(projectName: string): void;
focusTask(projectName: string, taskName: string): void;
showFullProjectGraph(): void;
getRunningTasks(): Promise<RunningTasksMap>;
/**
* Set up connection status change listener
* Returns cleanup function
*/
onConnectionChange(callback: (available: boolean) => void): () => void;
/**
* Clean up resources
*/
dispose(): void;
}