Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-daedalus-mcp-pcapy-ng": {
"args": [
"mcp-pcapy-ng"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server exposing pcapy-ng packet capture functionality.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-pcapy-ng' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-pcapy-ng against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
mcpki-server is the backend infrastructure for https://www.mcpki.org, enabling secure public key management and autonomous certificate handling for large language models (LLMs).
MCP Security Weekly
Get CVE alerts and security updates for io.github.daedalus/mcp-pcapy-ng and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server exposing pcapy-ng packet capture functionality.
mcp-name: io.github.daedalus/mcp-pcapy-ng
pip install mcp-pcapy-ng
The MCP server provides tools for network packet capture using pcapy-ng:
from mcp_pcapy_ng import mcp
mcp.run()
Or via command line:
mcp-pcapy-ng
findalldevs - List all available network interfaceslookupdev - Get the default network deviceopen_live - Open a live network interface for packet captureopen_offline - Open a pcap file for readingcreate - Create a packet capture handlecompile - Create a BPF filter programpcap_read - Read packets from a pcap handlepcap_datalink - Get the data link typepcap_setfilter - Attach a BPF filterpcap_getnonblock - Get non-blocking statuspcap_setnonblock - Set non-blocking modeget_dlt_names - Get DLT constant mappingsget_pcap_directions - Get direction constant mappingsget_constants - Get all constantsgit clone https://github.com/daedalus/mcp-pcapy-ng.git
cd mcp-pcapy-ng
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mypy src/