MCP Hub
Back to servers

arkime-mcp-server

An MCP server for Arkime full packet capture that enables AI assistants to search network sessions, investigate traffic patterns, and monitor capture health through various network analysis tools.

glama
Updated
Apr 14, 2026

arkime-mcp-server

An MCP server for Arkime full packet capture. Lets AI assistants search network sessions, investigate traffic patterns, and monitor capture health.

Tools

ToolDescription
search_sessionsSearch sessions with Arkime expressions, returns source/dest IPs, ports, protocols, bytes, geo, and AS info
get_session_detailFull decoded protocol detail for a single session
get_session_packetsDecoded packet data for a session
top_talkersTop N values for any field by session count (hosts, ports, domains, etc.)
connections_graphNetwork connection graph — nodes and links with byte/packet/session counts
unique_destinationsDistinct external IPs contacted by an internal host
dns_lookupsDNS queries captured in traffic, filterable by domain pattern or source IP
reverse_dnsPTR/reverse DNS lookup for an IP
external_connectionsSessions going to non-RFC1918 destinations, sorted by bytes
geo_summaryDestination traffic breakdown by country
capture_statusArkime cluster health — node count, shard status, OpenSearch version
pcap_filesPCAP capture files with sizes, packet counts, and time ranges
list_fieldsAvailable Arkime session fields for use in search expressions

Setup

npm install
npm run build

Configuration

Set environment variables:

VariableRequiredDefaultDescription
ARKIME_URLNohttp://192.168.5.176:8005Arkime viewer URL
ARKIME_USERNomcpArkime API username
ARKIME_PASSWORDYesArkime API password

Usage with Claude Code

Add to your MCP settings (e.g., .mcp.json):

{
  "mcpServers": {
    "arkime": {
      "command": "node",
      "args": ["/path/to/arkime-mcp-server/build/index.js"],
      "env": {
        "ARKIME_PASSWORD": "your-password"
      }
    }
  }
}

Authentication

Arkime uses HTTP Digest authentication. The server handles this via the digest-fetch library.

License

MIT

Reviews

No reviews yet

Sign in to write a review