We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/magemaclean/azure-devops-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.ts•416 B
#!/usr/bin/env node
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* CLI entry point for local/stdio usage
* This file is used when running: npx @azure-devops/mcp or node dist/cli.js
* Smithery uses src/index.ts directly without this wrapper
*/
import main from "./index.js";
main().catch((error) => {
console.error("Fatal error in main():", error);
process.exit(1);
});