sentinel-agent-system
Provides a natural-language-to-SQL interface over the infrastructure telemetry database, allowing users to query operational health data without writing SQL.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sentinel-agent-systemDiagnose why the API latency is spiking and remediate if safe."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sentinel — Autonomous System Health Guardian
Sentinel is a multi-agent infrastructure monitoring platform for a cloud-native environment. Beyond investigating anomalies in real time, it also acts as the platform's natural-language interface to operational telemetry, letting administrators query infrastructure health without writing SQL.
Four specialized agents — Monitor, Diagnostician, Remediation, and Data Intelligence — collaborate through a LangGraph state machine, coordinated entirely through a single standardized MCP gateway.
Architecture
The core workflow is a circular LangGraph state machine: Monitor detects anomalies, Diagnostician determines a likely root cause using a RAG knowledge base, Remediation attempts an appropriate fix (respecting safety guardrails), and Verify confirms whether the fix worked. If verification fails, the graph loops back to Diagnostician, up to a configurable retry limit.
All agents interact with the system exclusively through an MCP (Model Context Protocol) gateway — no agent talks to the database, the logs, or the knowledge base directly. This keeps every tool call auditable and swappable behind one interface.
Features
Four CrewAI agents, each scoped to only the MCP tools its role requires
RAG-backed diagnosis over a curated set of operational runbooks, using Sentence-Transformers embeddings and FAISS similarity search
Natural-language-to-SQL interface over the infrastructure telemetry database, with graceful degradation for out-of-scope questions
Safety guardrails that block high-risk remediation commands (e.g. service reboots) when the system is under critical load — verified to block correctly under real conditions, not just in theory
Self-healing retry loop: failed verifications automatically route back to diagnosis rather than silently failing
Full observability via LangSmith tracing on every NL2SQL call
Tech stack
Layer | Tools |
Agent orchestration | CrewAI |
Workflow / state machine | LangGraph |
Tool gateway | FastMCP |
LLM inference | Groq ( |
Embeddings + retrieval | Sentence-Transformers ( |
Observability | LangSmith |
Database | SQLite |
Setup
python -m venv venv
venv\Scripts\activate # Windows
pip install -r requirements.txtCreate a .env file with:
GROQ_API_KEY=your_key
LANGCHAIN_TRACING_V2=true
LANGCHAIN_API_KEY=your_langsmith_key
LANGCHAIN_PROJECT=sentinel-agent-system
Running a demo
python demo.pyThis runs the full pipeline against a sample server, printing each agent's reasoning as it moves through Monitor → Diagnose → Remediate → Verify, including a live demonstration of the retry loop if verification fails on the first attempt.
Deliverables note
The Post-Mortem Report, LangSmith NL2SQL trace screenshots, and workflow diagrams were submitted separately, per assignment instructions.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
Autopilot MCP server for GEO analyses, reports, content, audits, memories and agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/RahemShakeel/sentinel-agent-system'
If you have feedback or need assistance with the MCP directory API, please join our Discord server