zero-trust-mcp
A lightweight, local-first MCP server that enforces zero-trust data privacy for AI agents by encrypting tool call payloads locally using AES-256-GCM and persisting them to a local SQLite database.
README
Zero-Trust Model Context Protocol (MCP) Integration Server
A lightweight, local-first Model Context Protocol (MCP) server built in Python that enforces zero-trust data privacy for AI agents.
By intercepting tool calls prior to cloud transmission, this server encrypts payloads locally using AES-256-GCM and persists them to a local SQLite database. Sensitive contextual data stays encrypted at rest, gated behind an access token, and every access attempt is actively logged.
š Key Features
- Model Context Protocol (MCP) Native: Exposes secure tools over standard I/O (
stdio) via FastMCP. - Zero-Trust Encryption: AES-256-GCM with random 96-bit nonces for authenticated local encryption.
- Password-Derived Keys: The encryption key is derived from a master password via
scrypt, using a salt persisted in the database ā ensuring the vault survives server restarts. - Access Control: Every tool call (
secure_store,secure_retrieve,audit_recent) requires a valid HMAC access token, verified in constant time to resist timing attacks. - Audit Logging: Every store/retrieve attempt ā successful or not ā is written to an append-only
audit_logtable to ensure complete observability. - Live Security Dashboard: Includes a lightweight FastAPI web interface to visually monitor the SQLite audit trail in real-time.
- AI Client Simulator: An async Python client (
ai_client.py) demonstrating programmatic tool-calling over the MCP standard, including rejected-token handling.
š Repository Structure
āāā crypto_engine.py # AES-256-GCM + scrypt key derivation
āāā access_control.py # Constant-time access token verification
āāā audit_log.py # Append-only audit trail logic
āāā mcp_server.py # FastMCP protocol server & SQLite DB logic
āāā ai_client.py # Async AI Agent simulator acting as an MCP client
āāā dashboard.py # FastAPI web UI for visualizing security logs
āāā test_mcp.py # Unit tests for crypto, access control, and audit logs
āāā .env.example # Template for required environment variables
āāā .gitignore # Git ignore rules
āāā requirements.txt # Core dependencies
š§ Threat Model
What this protects against:
-
Data at Rest Theft: Secrets sitting in vault.db are unreadable if the file alone is stolen (they're AES-256-GCM ciphertext, keyed off a password never written to disk).
-
Tampered Ciphertext: GCM is authenticated ā tampering causes decryption to fail loudly rather than silently returning garbage.
-
Unauthorized Tool Calls: No access token, no data.
What this does not protect against:
*A compromised local environment that already holds the master password and access token in memory.
*Multi-tenant isolation ā right now there is one shared secret vault, not per-agent scoped secrets.
*Network-level threats ā this is a local stdio server, not exposed over a network by default.
š ļø Setup & Usage
- Install Dependencies
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
- Configure Environment Create a .env file in the root directory and add your passwords (the scripts will auto-load this using python-dotenv):
ZTMCP_MASTER_PASSWORD=your_secure_password
ZTMCP_ACCESS_TOKEN=your_secure_token
- Run the AI Client Simulator Watch the automated client connect to the MCP server, authenticate, and securely process data.
python ai_client.py
- View the Audit Dashboard Launch the FastAPI server to view real-time access logs.
uvicorn dashboard:app --reload --port 8000
# Open http://127.0.0.1:8000 in your browser
- Run the Test Suite
python -m unittest test_mcp.py -v
š Roadmap
-
Per-Agent Identity: Transition from one shared token to agent-specific tokens to log which agent accessed what.
-
Secret Expiry / TTL: Allow secure_store to take an optional expires_at timestamp.
-
Rate Limiting: Throttle brute-force loops against secure_retrieve.
-
Key Rotation: Build a rotate_key tool that re-encrypts all secrets under a new password/salt.
-
OS Keyring Integration: Swap SQLite salt storage for OS keyring integration (e.g. via the keyring package).
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.