HR System MCP Server
README.md
# HR System MCP Server
An unofficial prototype MCP server providing HR system functionality with **Okta token validation**. For evaluation and testing purposes only.
## š Documentation
**Complete documentation available in the [`docs/`](docs/) folder:**
- **[docs/RAILWAY_README.md](docs/RAILWAY_README.md)** - Deploy to Railway.com (3 steps) š
- **[docs/DOCKER_QUICK_START.md](docs/DOCKER_QUICK_START.md)** - Run locally with Docker š³
- **[docs/README_INTEGRATION.md](docs/README_INTEGRATION.md)** - Use the deployed server š
- **[docs/CLAUDE.md](docs/CLAUDE.md)** - Developer guide & architecture š»
- **[docs/INDEX.md](docs/INDEX.md)** - Complete documentation index š
## Overview
The HR System MCP Server provides:
- ā
Employee information lookup
- ā
Employee directory listing
- ā
Payroll information access
- ā
Time-off request management
- ā
**Okta OAuth 2.0 token validation** for all tool calls
- ā
HTTP/NDJSON streaming support (FastMCP)
- ā
**Ready for Railway deployment** š
## Authentication
This server validates Okta access tokens for all tool calls (except `initialize`):
- **Token Source**: Okta authorization server
- **Validation**: JWT signature, expiration, audience claims
- **Authorization Header**: `Authorization: Bearer <access_token>`
## Quick Start
```bash
# Setup
cp env.example .env
# Edit .env with your Okta credentials
# Install dependencies
pip install -r requirements.txt
# Run in HTTP mode (for Okta MCP Adapter)
python main.py --http 8001
```
## Configuration
### .env (Environment Variables)
```bash
OKTA_DOMAIN=ijtestcustom.oktapreview.com
OKTA_AUTHORIZATION_SERVER_ID=auss2fth0mcIXHzVO1d7
OKTA_AUDIENCE=
OKTA_REQUIRED_SCOPES=
# When true (default), tools/list without auth returns 401. When false, allows unauthenticated tools/list (e.g. for gateway registration).
# PROTECTED_DISCOVERY=true
```
### Available Tools
| Tool | Description | Parameters |
| ----------------------- | --------------------- | ----------------------------- |
| `get_employee` | Get employee by ID | `employee_id: str` |
| `list_employees` | List all employees | None |
| `get_employee_payroll` | Get payroll info | `employee_id: str` |
| `get_time_off_requests` | Get time-off requests | `employee_id: str (optional)` |
## Usage Examples
### Direct via VS Code/Copilot
```bash
# Endpoint
http://localhost:8001/mcp
# Authorization
Authorization: Bearer <okta_access_token>
```
### Via Okta MCP Adapter Gateway
```bash
# Gateway will:
# 1. Receive request from client
# 2. Validate Okta token
# 3. Forward to HR System MCP
# 4. Attach authorization header
```
## Implementation Details
- **Framework**: FastMCP 3.0.0b1
- **Server**: Uvicorn (async HTTP)
- **Protocol**: MCP (Model Context Protocol) with NDJSON streaming
- **Token Validation**: JWKS-based JWT validation with signature verification
- **Caching**: JWKS keys cached with TTL
## Request Flow
```
Client Request
ā
Authorization Header (Okta token)
ā
Initialize (no token needed)
ā
tools/list (validate token)
ā
tools/call (validate token)
ā
Response
```
## š Deployment Options
### Vercel (Serverless) ā”
Deploy as serverless function - automatic scaling, pay-per-use
- ā
**Best for**: Sporadic usage, automatic scale-to-zero
- ā
**Free tier**: 100GB bandwidth/month
- ā ļø **Constraint**: 10-second timeout (free), 5-min (Pro)
- š **Guide**: **[docs/VERCEL_README.md](docs/VERCEL_README.md)**
### Railway.com (Traditional Server) š
Deploy as long-running server - always-on, unlimited timeout
- ā
**Best for**: Constant traffic, persistent connections
- ā
**Free tier**: 500 hours/month ($5/month after)
- ā
**No timeout**: Unlimited request duration
- š **Guide**: **[docs/RAILWAY_README.md](docs/RAILWAY_README.md)**
### Docker (Local Development) š³
Run locally with Docker - full control, testing
- š **Guide**: **[docs/DOCKER_QUICK_START.md](docs/DOCKER_QUICK_START.md)**
```bash
docker-compose up -d
```
**Recommendation**:
- Use **Vercel** for sporadic/unpredictable usage (cheaper, auto-scales)
- Use **Railway** for constant traffic or if you need long timeouts
## Troubleshooting
See **[docs/RAILWAY_DEPLOYMENT.md](docs/RAILWAY_DEPLOYMENT.md#troubleshooting)** for complete troubleshooting guide.
**Quick fixes:**
- **Token validation fails**: Verify `OKTA_DOMAIN` and `OKTA_AUTHORIZATION_SERVER_ID` in `.env`
- **Port already in use**: Change port in startup command: `python main.py --http 8002`
- **Missing environment variables**: Copy `.env` example and fill in values
- **JWKS fetch error**: Verify Okta domain and authorization server ID are correct
## Project Structure
```
hr-mcp-server/
āāā main.py # FastMCP server with HTTP handler
āāā requirements.txt # Python dependencies
āāā Dockerfile # Docker container definition
āāā docker-compose.yml # Docker Compose configuration
āāā railway.json # Railway deployment config
āāā deploy-railway.sh # Deployment helper script
āāā test_server.sh # Server test script
āāā auth/ # Authentication module
ā āāā __init__.py
ā āāā okta_validator.py # Okta token validation
āāā docs/ # Documentation
āāā INDEX.md # Documentation index
āāā RAILWAY_README.md # Railway quick start
āāā RAILWAY_DEPLOYMENT.md # Complete deployment guide
āāā DOCKER_QUICK_START.md # Docker reference
āāā README_INTEGRATION.md # Usage guide
āāā CLAUDE_CODE_SETUP.md # Claude Code setup
āāā CLAUDE.md # Developer documentation
āāā ...more docs
```
See **[docs/INDEX.md](docs/INDEX.md)** for complete documentation guide.
## Testing
```bash
# Using curl with Okta token
curl -X POST http://localhost:8001/mcp \
-H "Authorization: Bearer <your_okta_token>" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list",
"params": {}
}'
```
## š Documentation
For complete documentation, see the **[docs/](docs/)** folder:
- **[Getting Started](docs/INDEX.md)** - Documentation index
- **[Deploy to Railway](docs/RAILWAY_README.md)** - Cloud deployment guide
- **[Run with Docker](docs/DOCKER_QUICK_START.md)** - Local development
- **[Integration Guide](docs/README_INTEGRATION.md)** - How to use the server
- **[Developer Guide](docs/CLAUDE.md)** - Architecture & development
## References
- [MCP Specification](https://modelcontextprotocol.io/)
- [FastMCP Documentation](https://gofastmcp.com/)
- [Okta Developer Docs](https://developer.okta.com/)
- [Railway Documentation](https://docs.railway.app/)
## Status
ā ļø **Unofficial Prototype** - For evaluation and testing only. Not for production use.
License: Apache 2.0
This server cannot be deployed
Maintenance
ActivityInactive
ResponsivenessNo issues