SentinelAI MCP Server
Enables secure enterprise AI agents to access internal tools like GitHub, Gmail, Calendar, file systems, databases, and knowledge bases through the Model Context Protocol, with built-in security, audit, and observability.
README
<div align="center">
๐ก๏ธ SentinelAI
Secure Enterprise AI Workspace
A self-hostable AI agent platform that securely connects employees to their internal knowledge, source code, email, calendar, and operational tools โ built on the Model Context Protocol (MCP).
<br>
<br>
Live Demo (Codespaces) ยท Architecture ยท Features ยท Quick Start ยท Security ยท SECURITY.md
</div>
๐ Try it in 30 seconds โ no install needed
Click the badge โ wait ~30 sec for setup โ frontend opens automatically. Log in with alice / sentinel-demo.
Codespaces gives you a full cloud VS Code with both servers running and ports forwarded. Free 60 hours/month on personal GitHub accounts.
<details> <summary><b>๐ธ Click to preview what you'll see</b></summary>
| Page | Description |
|---|---|
| ๐ Login | JWT-secured sign-in with bcrypt password verification |
| ๐ฌ Chat | Multi-turn conversation, agent tool calls visualized in real time |
| ๐ Documents | Drag-and-drop ingestion into the RAG knowledge base |
| โ๏ธ Settings | Live status of every MCP connector (live / mock / demo) |
| ๐ Tool Trace | Expand any agent response to see exactly which tools fired, with arguments + results + latency |
</details>
๐ก What is SentinelAI?
Imagine one chat interface where an employee asks "Did anyone email about last week's incident, and is there a related GitHub issue?" โ and the AI agent figures out which internal tools to query (Gmail + GitHub), runs them in parallel, and returns a single grounded answer with citations.
That's SentinelAI. It's not a ChatGPT wrapper โ it's the AI platform layer that companies actually need: one agent, your data, your auth, your audit trail.
Why MCP?
The Model Context Protocol is the emerging standard for plugging tools into AI agents. Build a Gmail tool once as an MCP server and it works in Claude Desktop, Cursor, SentinelAI, and any future MCP-aware client. Without MCP, every integration is custom glue. With MCP, build once, use everywhere.
๐๏ธ Architecture
flowchart TD
User([๐ค User])
UI[Next.js 14 Frontend<br/>Tailwind + shadcn/ui]
API[FastAPI Gateway<br/>JWT + CORS + Rate Limit]
Auth[Auth Layer<br/>JWT โข RBAC โข Bcrypt โข Audit Log]
RAG[RAG Engine<br/>Chroma / PGVector + Citations]
Agent[Agent Orchestrator<br/>Planner โข Retry โข Tool Traces]
LLM[(LLM Provider<br/>Anthropic / OpenAI)]
MCP[MCP Server<br/>FastMCP]
GitHub[GitHub<br/>4 tools]
Gmail[Gmail<br/>3 tools]
Cal[Calendar<br/>3 tools]
FS[File System<br/>3 tools]
DB[(PostgreSQL<br/>2 tools)]
KB[Knowledge Base<br/>RAG tool]
User --> UI
UI --> API
API --> Auth
API --> RAG
API --> Agent
Agent --> LLM
Agent --> MCP
MCP --> GitHub
MCP --> Gmail
MCP --> Cal
MCP --> FS
MCP --> DB
MCP --> KB
RAG --> KB
classDef gateway fill:#3b82f6,stroke:#1e40af,color:#fff
classDef security fill:#ef4444,stroke:#991b1b,color:#fff
classDef ai fill:#8b5cf6,stroke:#5b21b6,color:#fff
classDef tool fill:#22c55e,stroke:#15803d,color:#fff
class API,UI gateway
class Auth security
class Agent,RAG,LLM,MCP ai
class GitHub,Gmail,Cal,FS,DB,KB tool
โจ Features
<details open> <summary><b>Core AI</b> โ Click to expand each section</summary>
Core AI
- Conversational enterprise assistant with multi-turn memory (SQLite-backed, session-isolated)
- RAG over enterprise documents (Markdown + PDF) with smart heading-aware chunking
- Citations on every retrieved answer
- Provider-agnostic LLM layer (swap Anthropic โ OpenAI via env var)
- Multi-step planning: decomposes complex queries into sub-tasks
</details>
<details> <summary><b>๐ MCP Connectors (18 tools across 7 servers)</b></summary>
| Connector | Tools |
|---|---|
| GitHub | search_issues, create_issue, comment_on_issue, search_code |
| Gmail | search, get_thread, draft_reply |
| Calendar | list_events, create_event, check_availability |
| File System | list_files, read_file, search (sandboxed) |
| PostgreSQL | query (read-only SELECT), describe_schema |
| Knowledge Base | query_knowledge_base (RAG) |
| System | echo, current_time |
</details>
<details> <summary><b>๐ก๏ธ Security</b></summary>
- JWT access + refresh tokens with cryptographic signature verification
- Role-based access control (admin / user / viewer)
- Bcrypt password hashing
- Password policy: โฅ8 chars, letter + digit/special required, common-password blocklist
- Rate limiting:
/auth/login10/min,/auth/register5/min, global 100/min per IP - Token revocation on logout (defense against stolen tokens)
- HTTP security headers on every response: HSTS, CSP, X-Frame-Options DENY, X-Content-Type-Options nosniff, Referrer-Policy, Permissions-Policy
- Sandboxed file system access (path-traversal protection)
- Read-only SQL enforcement on database queries
- Human-approval gate on destructive actions (create_issue, send_email)
- Audit log of every authenticated action (timestamped, IP-tracked)
- CodeQL SAST scanning on every push (Python + TypeScript)
- Dependabot auto-updates for outdated dependencies
- Full vulnerability disclosure process โ see SECURITY.md
</details>
<details> <summary><b>๐ค Agentic, ๐ Enterprise, ๐ Observability, ๐งช Evaluation, ๐ข Deployment</b></summary>
Agentic
- Tool calling with retry + exponential backoff on failure
- Structured tool-call traces for every conversation
- Pluggable LLM provider abstraction
- Stateless or stateful operation
Enterprise
- Document ingestion (Markdown, PDF, plain text)
- Semantic search via sentence-transformers + Chroma/PGVector
- Document versioning by content hash
- Connector mock-mode for demos without real OAuth
Observability
- Structured JSON logging (structlog)
- Prometheus metrics: request latency, tool call counts, LLM latency, RAG queries, auth events
- Request ID propagation for distributed tracing
/metricsendpoint ready for Prometheus scraping
Evaluation
- Eval dataset with expected tool calls and golden answers
- Tool-call correctness scoring
- Keyword grounding metrics
- LLM-as-judge for answer quality
Deployment
- Docker images for backend + frontend
- Docker Compose for full local stack (Postgres + pgvector + Prometheus + Grafana)
- Kubernetes manifests for production deploy
- GitHub Actions CI runs tests on every push
</details>
๐ Quick Start
1. Clone & install
git clone https://github.com/virinchisai/sentinel-ai.git
cd sentinel-ai
python3.12 -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
cd frontend && npm install && cd ..
2. Configure
cp .env.example .env
# edit .env: add ANTHROPIC_API_KEY or OPENAI_API_KEY
3. Ingest sample knowledge base
python -m backend.rag.ingest
4. Run
# terminal 1: backend
uvicorn backend.api.main:app --reload
# terminal 2: frontend
cd frontend && npm run dev
Visit http://localhost:3000, register an account, and start chatting.
๐ Repository Tour
sentinel-ai/
โโโ backend/
โ โโโ api/ # FastAPI gateway: chat, auth, documents, admin routes
โ โโโ auth/ # JWT, RBAC, bcrypt, audit log (SQLAlchemy)
โ โโโ agents/ # LLM provider abstraction, MCP client, orchestrator, planner
โ โโโ rag/ # Chunking, PDF parsing, Chroma / PGVector stores, retriever
โ โโโ mcp_server/ # FastMCP server with 18 tools across 7 connectors
โ โโโ observability/ # structlog, Prometheus metrics, request tracing
โ โโโ tests/ # pytest suite
โโโ frontend/ # Next.js 14 + Tailwind: login, chat, documents, settings
โโโ evaluation/ # Eval dataset, runner, report
โโโ docker/ # Dockerfile.backend, Dockerfile.frontend, docker-compose.yml
โโโ kubernetes/ # Production K8s manifests
โโโ .github/
โ โโโ workflows/ # test.yml + codeql.yml (SAST)
โ โโโ dependabot.yml # Weekly dep updates
โโโ SECURITY.md # Vulnerability disclosure + threat model
๐งช Testing
Local
pytest backend/tests -v # 20 tests including 16 security regression tests
cd frontend && npm run build # frontend
The security suite (backend/tests/test_security.py) proves every protection stays on:
- Password policy (length, common-password blocklist, character classes)
- JWT signature verification + type-mismatch rejection
- RBAC permission checks per role
- SQL injection blocking (DROP / DELETE / INSERT rejected)
- Path-traversal blocking on filesystem connector
On GitHub
Three workflows run on every push and PR:
- tests โ pytest on Python 3.11 + 3.12, MCP smoke test (asserts โฅ18 tools register), frontend lint + build
- CodeQL โ SAST for Python + TypeScript with the security-and-quality query suite
- Dependabot โ weekly PRs for outdated pip / npm / GitHub Actions dependencies
You can also click "Run workflow" from the Actions tab to trigger a manual run.
๐ข Production Deployment
docker compose -f docker/docker-compose.yml up
Boots the full stack: Postgres+pgvector, FastAPI backend, Next.js frontend, Prometheus, and Grafana with pre-provisioned dashboards.
For Kubernetes, apply kubernetes/*.yaml.
๐ก๏ธ Security
SentinelAI is built defense-in-depth. Every protection has a regression test so disabling one breaks CI.
| Threat | Mitigation |
|---|---|
| Brute-force login | Rate limit (10/min) + bcrypt slow hash |
| Password stuffing | Common-password blocklist + minimum entropy policy |
| Token theft | Short access-token expiry + revocation list + HSTS |
| XSS / Clickjacking | CSP default-src 'none', X-Frame-Options: DENY |
| SQL injection | Parameterized queries + SELECT-only enforcement |
| Path traversal | Resolved-path containment in FileSystem connector |
| Prompt injection โ destructive action | Human-approval gate, audit logging |
| Vulnerable dependencies | Dependabot weekly + CodeQL on every push |
See SECURITY.md for the full threat model and the private vulnerability-reporting process.
The repo's Security tab surfaces CodeQL findings, Dependabot alerts, and the published security policy.
๐ผ Why this matters
Most "AI app" portfolio projects are thin ChatGPT wrappers. SentinelAI is the entire enterprise AI platform stack โ auth, RBAC, multi-tool agents, RAG with citations, observability, evaluation, deployment โ built on the modern protocol (MCP) that Anthropic, OpenAI, and the broader ecosystem are converging on. It demonstrates the full skill set required for Applied AI Engineering, AI Platform Engineering, and Forward-Deployed Engineering roles at frontier AI companies.
<details> <summary><b>๐ Resume bullet (copy-paste ready)</b></summary>
Designed and shipped a secure enterprise AI workspace implementing the Model Context Protocol (MCP) to orchestrate AI agents across GitHub, Gmail, Calendar, PostgreSQL, sandboxed FS, and an enterprise knowledge base. Engineered a FastAPI gateway with JWT auth, RBAC, audit logging, rate limiting, HSTS/CSP headers, and token revocation, a multi-step planner-driven agent loop, a citation-aware RAG pipeline (Chroma / PGVector), Prometheus observability, a Next.js 14 frontend, a 20-test pytest suite (16 dedicated security regressions), CodeQL + Dependabot in CI, and Docker / Kubernetes deployment.
</details>
๐ Star History
๐ License
MIT โ see LICENSE.
<div align="center">
Built by Virinchi Sai Athmakuri ยท LinkedIn ยท Email
โญ Star this repo if you find it useful!
</div>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.