A Model Context Protocol server providing tools to check CVEs via Opsify API for usage by LLMs
Project description
Check MCP Server
A Model Context Protocol server that provides CVE checking capabilities via the Opsify API. This server enables LLMs to search for and retrieve CVE (Common Vulnerabilities and Exposures) information using a flexible set of filters.
[!CAUTION] This server can access external APIs and may represent a security risk if misconfigured. Ensure your API key and usage comply with your organization's security policies.
Available Tools
search_cve- Search CVEs with various filters via the Opsify API.cve_id(string, optional): CVE ID to search fortitle(string, optional): Title to search in CVE descriptionstate(string, optional): State to filter bypriority(string, optional): Priority level to filter byseverity(string, optional): Severity level to filter byscore(float, optional): CVSS score to filter byproduct_name(string, optional): Product name to filter affected productsproduct_version(string, optional): Product version to filter affected productsvendor(string, optional): Vendor name to filter affected productsfrom_date(string, optional): Start date for filtering (YYYY-MM-DD or ISO 8601)to_date(string, optional): End date for filtering (YYYY-MM-DD or ISO 8601)skip(int, optional): Number of records to skip (pagination)limit(int, optional): Maximum number of records to return (pagination)
Example Usage
python -m check_mcp
Or as a script/entry point:
check-mcp
Example Tool Call
{
"tool": "search_cve",
"arguments": {
"product_name": "nginx",
"severity": "high",
"from_date": "2023-01-01",
"limit": 5
}
}
Installation
Using uv (recommended)
When using uv no specific installation is needed. We will
use uvx to directly run check-mcp.
Using PIP
Alternatively you can install check-mcp via pip:
pip install check-mcp
After installation, you can run it as a script using:
python -m check_mcp
Configuration
Configure for Claude.app
Add to your Claude settings:
Using uvx
"mcpServers": {
"check": {
"command": "uvx",
"args": ["check-mcp"]
}
}
Using docker
"mcpServers": {
"check": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/check"]
}
}
Using pip installation
"mcpServers": {
"check": {
"command": "python",
"args": ["-m", "check_mcp"]
}
}
Configure for VS Code
For quick installation, use one of the one-click install buttons below...
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).
Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.
Note that the
mcpkey is needed when using themcp.jsonfile.
Using uvx
{
"mcp": {
"servers": {
"check": {
"command": "uvx",
"args": ["check-mcp"]
}
}
}
}
Using Docker
{
"mcp": {
"servers": {
"check": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/check"]
}
}
}
}
Debugging
You can use the MCP inspector to debug the server. For uvx installations:
npx @modelcontextprotocol/inspector uvx check-mcp
Or if you've installed the package in a specific directory or are developing on it:
cd path/to/servers/src/check
npx @modelcontextprotocol/inspector uv run check-mcp
Contributing
We encourage contributions to help expand and improve check-mcp. Whether you want to add new tools, enhance existing functionality, or improve documentation, your input is valuable.
For examples of other MCP servers and implementation patterns, see: https://github.com/modelcontextprotocol/servers
Pull requests are welcome! Feel free to contribute new ideas, bug fixes, or enhancements to make check-mcp even more powerful and useful.
License
check-mcp is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file check_mcp-0.0.6.tar.gz.
File metadata
- Download URL: check_mcp-0.0.6.tar.gz
- Upload date:
- Size: 40.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3f189435336b2b0637fa3b31b3043abacd2d0ecae86a679818e23bff02582a5
|
|
| MD5 |
7f56056d6ca5879f1400855daa6b98d4
|
|
| BLAKE2b-256 |
5fbd1f5b7c4ee4131a8fa53225570b43f0432d87758f9c2b0e02e44a530e7816
|
File details
Details for the file check_mcp-0.0.6-py3-none-any.whl.
File metadata
- Download URL: check_mcp-0.0.6-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3128b987bf86e1c19fcfed15e7016bb2d443f99221d9e728184306535d22be2f
|
|
| MD5 |
6fc1c181cf945e32b0af69edbd042edd
|
|
| BLAKE2b-256 |
5d04c3a364570da22f4827f4ee1d62663a793a0aee0beca2203e0fa3752db8dd
|