UNPKG

@tiberriver256/mcp-server-azure-devops

Version:

Azure DevOps reference server for the Model Context Protocol (MCP)

11 lines (10 loc) 268 B
import { JsonSchema7Type } from 'zod-to-json-schema'; /** * Represents a tool that can be listed in the ListTools response */ export interface ToolDefinition { name: string; description: string; inputSchema: JsonSchema7Type; mcp_enabled?: boolean; }