@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
11 lines (10 loc) • 419 B
TypeScript
import { WebApi } from 'azure-devops-node-api';
import { ListProjectsOptions, TeamProject } from '../types';
/**
* List all projects in the organization
*
* @param connection The Azure DevOps WebApi connection
* @param options Optional parameters for listing projects
* @returns Array of projects
*/
export declare function listProjects(connection: WebApi, options?: ListProjectsOptions): Promise<TeamProject[]>;