OWASP Cheatsheets MCP Server
Provides access to OWASP Cheat Sheets content, enabling search capabilities and retrieval of security best practices from the OWASP Cheat Sheet Series repository.
Click on "Deploy 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., "@OWASP Cheatsheets MCP Servershow me the SQL injection prevention cheat sheet"
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.
OWASP Cheat Sheet MCP Server
A minimal Model Context Protocol (MCP) compatible server providing the OWASP Cheat Sheets.
The server uses FastAPI to expose a simple HTTP API that returns the contents of the cheat sheets from the OWASP Cheat Sheet Series.
Prerequisites
Python 3.8 or newer
Git (for cloning the cheat sheet repository on first run)
Related MCP server: vuln-nist-mcp-server
Usage
Install requirements:
pip install -r requirements.txt(Optional) Set
CHEATSHEETS_DIRif you already have a local copy of the cheat sheets:export CHEATSHEETS_DIR=/path/to/CheatSheetSeries/cheatsheetsRun the server with
uvicorn:uvicorn server.app:app --reloadIf
CHEATSHEETS_DIRis not set the server will clone the cheat sheet repository on first start (requires network access).
Endpoints
GET /health– Basic health check.GET /cheatsheets– List available cheat sheet files.GET /cheatsheets/{name}– Retrieve a specific cheat sheet.GET /search?q=term– Search cheat sheets for a term and return matching file names.
Running in production
Use uvicorn with explicit host and port when deploying:
uvicorn server.app:app --host 0.0.0.0 --port 8000For a real deployment consider a process manager such as systemd or running behind a reverse proxy.
Contributing
Pull requests are welcome. Tests can be added under a tests/ directory using pytest.
This implementation is a simplified example of an MCP server and may not cover the entire specification.
This server cannot be deployed
Maintenance
Related MCP Connectors
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
MCP server for accessing curated awesome list documentation
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP Spec Compliance MCP — audits any MCP server.json against the official Model Context Protocol
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol (MCP) server for querying the CVE-Search API. This server provides comprehensive access to CVE-Search, browse vendor and product、get CVE per CVE-ID、get the last updated CVEs.6106MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server for querying the NIST National Vulnerability Database (NVD) API, enabling search and retrieval of CVE details, temporal context, and KEV catalog entries.15MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server for automated security vulnerability assessment, combining OWASP Dependency-Check dependency scanning with custom code vulnerability detection, and generating detailed HTML and JSON reports.-
- FlicenseNot gradedqualityDmaintenanceA lightweight MCP server that wraps OWASP ZAP's REST API as Model Context Protocol tools, enabling AI agents to perform automated security scanning.-