Purify Security Feeds MCP Server

Query CISA KEV / EPSS vulnerability feeds with full per-record provenance and auditable versions

Local serverstdioGo

What is the Purify Security Feeds MCP server?

Query CISA KEV / EPSS vulnerability feeds with full per-record provenance and auditable versions. Exposed over MCP by the purify security feeds mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

MCP server for Purify's production security-intelligence feeds. Lets Claude Desktop, Cursor and other MCP clients query live CISA KEV / EPSS / enriched vulnerability feeds — every answer carries an auditable feed version and full per-record provenance.

Its toolset

Everything the assistant can do here goes through one of these:

  • list_feeds — List feeds with record counts and current version (dataset artifact hash)
  • search_feed — AND filters / sort / up to 50 rows, plus an exact total_matched count
  • get_provenance — Return a record's _purify passport and the feed's run chain, by CVE id
  • check_feed_changed — Incremental primitive: compare a known hash to detect new feed versions

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Configuration

You will need 2 environment variables: PURIFY_API_URL, PURIFY_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Purify Security Feeds's toolset — list_feeds, search_feed, get_provenance and 1 more — is a fair guide to whether it matches your workflow. It is maintained by eason4kim-rocket; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Purify Security Feeds's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the purify security feeds mcp server does with a few real requests.

Available tools

ToolWhat it does
list_feedsList feeds with record counts and current version (dataset artifact hash)
search_feedAND filters / sort / up to 50 rows, plus an exact total_matched count
get_provenanceReturn a record's _purify passport and the feed's run chain, by CVE id
check_feed_changedIncremental primitive: compare a known hash to detect new feed versions

How to install the Purify Security Feeds MCP server

{
  "mcpServers": {
    "purify-feeds": {
      "command": "/path/to/purify-feeds-mcp",
      "env": {
        "PURIFY_API_URL": "https://feeds.verifly.pro/feeds-api",
        "PURIFY_API_KEY": "<your-api-key>"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
PURIFY_API_URLEndpoint or connection string the server talks to.Yes
PURIFY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Purify Security Feeds to list feeds.
  • Use Purify Security Feeds to search feed.
  • Use Purify Security Feeds to get provenance.

Frequently asked questions

It connects Purify Security Feeds to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (list_feeds, search_feed, get_provenance, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Purify Security Feeds directly.