We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/claudiogarza/obsidian-rag-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
---
title: "recommendation-engine Service"
tags: [service, recommendation-engine, documentation]
status: active
---
# recommendation-engine
## Purpose
The recommendation-engine handles core functionality for our platform.
## API Endpoints
| Endpoint | Method | Description |
|----------|--------|-------------|
| /api/v1/resource | GET | List resources |
| /api/v1/resource/:id | GET | Get resource by ID |
| /api/v1/resource | POST | Create resource |
| /api/v1/health | GET | Health check |
## Dependencies
- Database: PostgreSQL
- Cache: Redis
- Message Queue: Azure Service Bus
## Configuration
Key environment variables:
- `DATABASE_URL`: Connection string
- `REDIS_URL`: Cache connection
- `LOG_LEVEL`: Logging verbosity
## Deployment
Deployed to AKS via GitHub Actions.
```bash
# Manual deployment
kubectl apply -f k8s/recommendation-engine/
```
## Monitoring
- Metrics: Prometheus
- Logs: Azure Log Analytics
- Traces: Application Insights
## See Also
- [[runbook-recommendation-engine|Operational Runbook]]
- [[rca-recommendation-engine|Past Incidents]]