Skip to main content
Glama

Azure DevOps MCP Server

index.ts647 B
import { getProjectTools } from './project'; import { getWorkItemTools } from './workItem'; import { getRepositoryTools } from './repository'; import { ToolRegistry } from './types'; export { ToolRegistry } from './types'; /** * Get all tools * * @returns A tool registry with all tools registered */ export function getAllTools(): ToolRegistry { const registry = new ToolRegistry(); // Register all tools getProjectTools().forEach((tool) => registry.registerTool(tool)); getWorkItemTools().forEach((tool) => registry.registerTool(tool)); getRepositoryTools().forEach((tool) => registry.registerTool(tool)); return registry; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kevinmeyvaert/azure-devops-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server