SSO MCP Server
MCP server providing development tools with Azure Entra ID authentication.
Overview
This server implements the Model Context Protocol (MCP) to expose development tools to AI coding assistants like GitHub Copilot and Claude Code. It provides access to organizational resources such as:
Development Checklists: Quality standards and verification items for code reviews, architecture, and design
Process Documentation: Step-by-step procedures for development workflows like deployments, incident response, and code reviews
More tools coming soon: The server is designed to be extensible with additional development resources
The server supports two authentication modes:
Local Mode: Browser-based Azure SSO for desktop/developer use
Cloud Mode: Bearer token validation for server deployments
Features
Dual-mode authentication (Local SSO / Cloud Bearer tokens)
OAuth 2.1 compliant Resource Server (Cloud mode)
Checklist tools:
get_checklist,list_checklistsProcess tools:
get_process,list_processes,search_processesHTTP Streamable transport for MCP communication
JWKS-based token validation with caching
Secure local token persistence (Local mode)
YAML frontmatter-based metadata for all content types
Keyword search with relevance ranking for processes
Prerequisites
Python 3.11+
uv package manager
Azure App Registration
VSCode with GitHub Copilot or Claude Code
Installation
Authentication Modes
Local Mode (Default)
For desktop/developer use with browser-based Azure SSO:
Cloud Mode
For server deployments with Bearer token validation:
Auto Mode
Automatically detects mode from request context:
Configuration
Variable | Mode | Required | Default | Description |
| All | No |
|
,
, or
|
| Local | Yes* | - | Azure app client ID |
| Local | Yes* | - | Azure tenant ID |
| Cloud | Yes* | - | API resource URL (audience) |
| Cloud | Yes* | - | Comma-separated issuer URLs |
| Cloud | No |
| JWKS cache TTL (seconds) |
| All | Yes | - | Checklist directory |
| All | No |
| Process documentation directory |
| All | No |
| Server port |
| All | No |
| Log level |
Usage
Start the server:
The server uses HTTP Streamable transport. Configure your AI assistant to connect to http://localhost:8080/mcp.
Supported Clients
This MCP server works with:
Claude Desktop - Add to
claude_desktop_config.jsonVSCode with GitHub Copilot - Add to
.vscode/mcp.jsonCline - Configure via Cline's MCP UI
GitHub Copilot CLI - Add to
~/.copilot/mcp-config.jsonClaude Code CLI - Add to
~/.claude/claude_desktop_config.json
Example configuration:
Available Tools
Checklist Tools
get_checklist
Retrieve a specific checklist by name (case-insensitive).
list_checklists
List all available checklists with metadata (name, description).
Process Tools
get_process
Retrieve a specific process document by name (case-insensitive).
list_processes
List all available process documents with metadata (name, description).
search_processes
Search for processes by keyword across name, description, and content. Returns up to 50 results ranked by relevance.
Creating Content
Checklists
Add markdown files to your CHECKLIST_DIR with YAML frontmatter:
Processes
Add markdown files to your PROCESS_DIR with YAML frontmatter:
Development
Documentation
Project Structure
Version History
v0.3.0 (2025-12-13)
Added Process Query feature with 3 new MCP tools:
get_process,list_processes,search_processesKeyword search with relevance ranking across process documentation
E2E test suite with 31 scenarios (100% pass rate)
Updated project description to reflect multi-function server capability
v0.2.0 (2025-12-12)
Added dual-mode authentication (LOCAL, CLOUD, AUTO)
Added OAuth 2.1 Resource Server support
Added JWT token validation with JWKS
Added Protected Resource Metadata (RFC 9728)
Added 91 new tests (218 total)
v0.1.0 (2025-12-11)
Initial release
Azure Entra ID SSO authentication
MCP tools for checklist management
HTTP Streamable transport
License
MIT