We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cakriwut/ado-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•669 B
#!/usr/bin/env node
import { program } from 'commander';
import { wikiCommands } from './wiki.js';
import { workItemCommands } from './work-item.js';
import { createConfig } from '../config/environment.js';
import * as dotenv from 'dotenv';
// Load environment variables from .env file
dotenv.config();
// Set up the main program
program
.name('azure-devops-cli')
.description('Azure DevOps CLI tools')
.version('0.1.0');
// Add wiki commands
wikiCommands(program);
// Add work item commands
workItemCommands(program);
// Parse arguments
program.parse(process.argv);
// If no arguments provided, show help
if (process.argv.length <= 2) {
program.help();
}