PatrowlIntelMCP
OfficialThe PatrowlIntelMCP server provides read-only access to PatrowlIntel's vulnerability intelligence, exposing three tools to any MCP-compatible client:
search_cves— Search and filter the CVE feed using criteria such as:Free-text search on CVE ID or summary
Minimum Patrowl EASM risk score (
min_score, 0–1)Minimum EPSS exploit probability (
min_epss, 0–1)CISA KEV catalog entries only (
is_kev)CVEs with at least one public exploit (
has_exploit)Remotely exploitable CVEs (
is_remote)Vendor/product technology scope (e.g.
Apache,Fortinet FortiOS)Publication date range (
published_from/published_to)Sorting and pagination (up to 100 per request)
get_cve— Retrieve the full intelligence record for a single CVE, including CVSS scores/vectors, EPSS probability, CISA KEV status and dates, CISA SSVC decision, public exploit links, affected technologies/CPEs, weaknesses (CWEs), and references.list_trending_attacks— List recently trending threats and actively discussed attacks, filterable by minimum severity (0=Info to 4=Critical) and publication date, sorted most-recent first (up to 100 per request).
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., "@PatrowlIntelMCPsearch for CVEs with public exploits"
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.
patrowl-intel-mcp
An MCP server that exposes PatrowlIntel vulnerability intelligence (CVEs, EPSS, CISA KEV, public exploits, trending attacks) to any MCP client. It is a thin, read-only stdio wrapper over the public PatrowlIntel API.
v0 — three tools:
search_cves,get_cve,list_trending_attacks.
Tools
Tool | Purpose |
| Filter/rank the CVE feed (risk score, EPSS, KEV, exploited, technology, dates). |
| Full record for one CVE (CVSS, EPSS, KEV, SSVC, exploits, references). |
| Recent trending threats, filterable by severity and date. |
Related MCP server: cwe-search_mcp
Configuration (environment)
Variable | Default | Purpose |
|
| Backend API base URL. |
| = API base | Public site base used for CVE citation links. |
| (unset) | Reserved for the future authenticated tier. |
|
| Per-request timeout (seconds). |
|
|
|
|
| Bind host for |
|
| Bind port for |
Run
# stdio (default) — for local MCP clients that launch the process
uv run patrowl-intel-mcp # or: pip install -e . && patrowl-intel-mcp
# streamable-http — as a networked service (e.g. Docker); serves at /mcp
PATROWL_INTEL_MCP_TRANSPORT=streamable-http PATROWL_INTEL_MCP_HOST=0.0.0.0 \
uv run patrowl-intel-mcpClient config
{
"mcpServers": {
"patrowl-intel": {
"command": "uvx",
"args": ["patrowl-intel-mcp"],
"env": { "PATROWL_INTEL_API_BASE": "https://<your-intel-host>" }
}
}
}During local development, point command at your checkout instead:
{ "command": "uv", "args": ["--directory", "/path/to/PatrowlIntelMCP", "run", "patrowl-intel-mcp"] }Available Tools
3 toolsget_cveA
Fetch full intelligence for a single CVE: CVSS, EPSS, CISA KEV status and dates, CISA SSVC decision, public exploit links, affected technologies, weaknesses and references.
| Name | Required | Description | Default |
|---|---|---|---|
| cve_id | Yes | CVE identifier, e.g. 'CVE-2024-3400'. | |
| verbose | No | Include full CVSS vectors, CPEs, all references and the raw SSVC block. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It clearly describes what data is fetched (CVSS, EPSS, etc.), conveying a read-only intent. However, it does not mention potential side effects, rate limits, or authentication requirements, though such transparency is less critical for a simple fetch operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that front-loads the purpose and lists key data items. Every phrase adds value, with no extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Without an output schema, the description serves as the output specification. It lists multiple data fields (CVSS, EPSS, etc.), which is sufficient. Minor gaps include no mention of response size or pagination (not needed for a single CVE), and no explicit note about error handling for invalid CVE IDs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers 100% of parameters with descriptions. The description adds global context but does not enhance parameter meaning beyond the schema. No additional format or constraint details are given for the required cve_id or optional verbose.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool fetches full intelligence for a single CVE, listing specific data points like CVSS, EPSS, CISA KEV status, etc. This distinguishes it from sibling tools like search_cves which presumably handles multiple CVEs, and list_trending_attacks which focuses on trending attacks rather than individual CVEs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for fetching data on a single CVE, but does not explicitly state when to use this tool versus alternatives (e.g., search_cves for bulk or list_trending_attacks for trending). No when-not or exclusion criteria are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_trending_attacksA
List trending attacks / actively-discussed threats from the Patrowl feed, most recent first. Use min_severity=3 to focus on High and Critical.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results, 1-100. | |
| since | No | ISO date lower bound on publish date, e.g. 2026-06-01. | |
| min_severity | No | Minimum severity: 0=Info, 1=Low, 2=Medium, 3=High, 4=Critical. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses ordering and suggests parameter usage, but lacks explicit mention of read-only nature, rate limits, pagination, or what 'trending' means. Adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no fluff. Purpose is front-loaded, followed by a useful usage hint. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description covers the tool's purpose, ordering, and a key parameter hint. It is sufficient for a list tool, though it could mention return type for completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with all parameters described in the schema. The description adds value by providing an example usage (min_severity=3) beyond what the schema offers, justifying a score above baseline 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'list', the resource 'trending attacks from the Patrowl feed', and the ordering 'most recent first'. It distinguishes from sibling tools (get_cve, search_cves) which are about CVEs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides a specific usage hint for min_severity=3 to focus on High and Critical. Does not explicitly state when to use this tool vs alternatives, but the context implies it's for trending attacks while siblings are for CVEs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_cvesA
Search the PatrowlIntel CVE feed with rich filters and return compact, ranked results. Use it to triage by risk (min_score / min_epss), surface KEV or exploited CVEs, or scope a vendor/technology. For the full record of one CVE, follow up with get_cve.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Ordering; default '-score' (most risky first). | -score |
| limit | No | Max results, 1-100. | |
| query | No | Free-text match on CVE id or summary. | |
| is_kev | No | Only CVEs in the CISA KEV catalog. | |
| min_epss | No | Minimum EPSS exploit probability (0-1). | |
| is_remote | No | Only remotely exploitable CVEs. | |
| min_score | No | Minimum Patrowl EASM risk score (0-1). | |
| technology | No | Vendor/product substring, e.g. 'Apache' or 'Fortinet FortiOS'. | |
| has_exploit | No | Only CVEs with at least one public exploit. | |
| published_to | No | ISO date upper bound on publication. | |
| published_from | No | ISO date lower bound on publication, e.g. 2026-01-01. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It implies a read operation (search) but does not explicitly state read-only, no side effects, or disclose rate limits or authentication needs. The mention of 'compact, ranked results' adds some behavioral context, but more specifics would be beneficial.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with purpose, efficient use of words. No fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description covers the tool's purpose, use cases, and relationship to siblings. Could mention output format or pagination but overall complete for a search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so all parameters are documented. The description does not add extra meaning beyond the schema, which is acceptable. Baseline score of 3 is appropriate as the schema carries the load.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it searches the PatrowlIntel CVE feed with rich filters, returning compact ranked results. It distinguishes from the sibling 'get_cve' by indicating that for full records one should use that tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly provides use cases: triage by risk, surface KEV/exploited CVEs, scope vendor/technology, and instructs to follow up with get_cve for full records. This gives clear when-to-use and when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.0.1- First observed
get_cve - First observed
list_trending_attacks - First observed
search_cves
TDQS
Each tool has a clearly distinct purpose: get_cve retrieves full details for a single CVE, list_trending_attacks shows trending threats, and search_cves provides filtered search. No ambiguity between them.
All tool names follow a consistent verb_noun snake_case pattern (get_cve, list_trending_attacks, search_cves), making them predictable and easy to understand.
Three tools is appropriate for a focused threat intelligence server. Each tool serves a distinct, essential function (detail retrieval, trending list, search) without being too few or too many.
The tool set covers the core needs: fetching CVE details, searching with filters, and viewing trending threats. Minor gaps exist, such as lacking a direct tool for bulk listing or subscription features, but the set is largely complete for typical use cases.
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
Threat intel + your scans/findings/Shield posture. CVE, EPSS, KEV, package vuln lookup, DAST.
CVE intelligence: exploitation (KEV/EPSS), detection coverage, fixed versions. All tools keyless.
Defensive vulnerability intelligence search across public CVE/NVD and GitHub advisory APIs with CVSS
1Read-only CVE intelligence, remediation playbooks, and agent setup guides. Not a scanner.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceProvides unified access to vulnerability data from NVD, MITRE, and GitHub Security Advisories for cybersecurity intelligence.5319MIT
- AlicenseAqualityDmaintenanceEnables querying MITRE's Common Weakness Enumeration database for vulnerability information, supporting CWE lookup, search, taxonomy navigation, and relationship mapping through MCP.96MIT
- AlicenseAqualityAmaintenanceUnifies NVD, EPSS, CISA KEV, GitHub Advisory, and OSV into a single MCP server, enabling AI agents to query vulnerability intelligence conversationally with 23 tools for incident response, prioritization, dependency audits, and threat monitoring.4158220MIT
- AlicenseAqualityAmaintenanceEnables querying the WPScan API for WordPress plugin, theme, core vulnerabilities, and specific vulnerability lookups through MCP tools.424MIT
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/Patrowl/PatrowlIntelMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server