Skip to main content
Glama

Azure DevOps MCP Server with PAT Authentication

by ennuiii
useragent.ts759 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. interface McpClientInfo { name: string; version: string; } class UserAgentComposer { private _userAgent: string; private _mcpClientInfoAppended: boolean; constructor(packageVersion: string) { this._userAgent = `AzureDevOps.MCP/${packageVersion} (local)`; this._mcpClientInfoAppended = false; } get userAgent(): string { return this._userAgent; } public appendMcpClientInfo(info: McpClientInfo | undefined): void { if (!this._mcpClientInfoAppended && info && info.name && info.version) { this._userAgent += ` ${info.name}/${info.version}`; this._mcpClientInfoAppended = true; } } } export { UserAgentComposer, McpClientInfo };

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/ennuiii/DevOpsMcpPAT'

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