@wangkanai/devops-mcp
Version:
Dynamic Azure DevOps MCP Server for directory-based environment switching
35 lines • 880 B
TypeScript
#!/usr/bin/env node
/**
* Azure DevOps MCP Proxy Server
* Main entry point for the dynamic Azure DevOps MCP proxy
*/
declare class AzureDevOpsMCPProxy {
private server;
private directoryDetector;
private toolHandlers;
private currentConfig;
constructor();
/**
* Initialize configuration from local .azure-devops.json files
*/
private initializeConfiguration;
/**
* Setup MCP server handlers
*/
private setupHandlers;
/**
* Update current Azure DevOps context based on working directory
*/
private updateCurrentContext;
/**
* Handle get-current-context tool call
*/
private handleGetCurrentContext;
/**
* Start the MCP server
*/
start(): Promise<void>;
}
declare function main(): Promise<void>;
export { main, AzureDevOpsMCPProxy };
//# sourceMappingURL=index.d.ts.map