"""
Azure DevOps MCP Server
A simple MCP server that exposes Azure DevOps capabilities.
"""
import argparse
from mcp.server.fastmcp import FastMCP
from mcp_azure_devops.features import register_all
from mcp_azure_devops.utils import register_all_prompts
# Create a FastMCP server instance with a name
mcp = FastMCP("Azure DevOps")
# Register all features
register_all(mcp)
register_all_prompts(mcp)
def main():
"""Entry point for the command-line script."""
parser = argparse.ArgumentParser(
description="Run the Azure DevOps MCP server")
# Add more command-line arguments as needed
parser.parse_args() # Store args if needed later
# Start the server
mcp.run()
if __name__ == "__main__":
main()
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/Vortiago/mcp-azure-devops'
If you have feedback or need assistance with the MCP directory API, please join our Discord server