Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<div align="center">
<!-- mcp-name: io.github.bx33661/wireshark-mcp -->

<br>

Expand Down
1 change: 1 addition & 0 deletions README_zh.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<div align="center">
<!-- mcp-name: io.github.bx33661/wireshark-mcp -->

<br>

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "wireshark-mcp"
version = "0.6.4"
version = "0.6.5"
description = "A production-grade Model Context Protocol (MCP) server for Wireshark"
readme = "README.md"
keywords = ["mcp", "wireshark", "tshark", "packet-analysis", "network", "pcap", "model-context-protocol", "llm", "security"]
Expand Down
22 changes: 22 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.bx33661/wireshark-mcp",
"description": "Professional network analysis with tshark. Security audits, deep-dives, and threat detection.",
"repository": {
"url": "https://github.com/bx33661/Wireshark-MCP",
"source": "github"
},
"version": "0.6.5",
"packages": [
{
"registryType": "pypi",
"identifier": "wireshark-mcp",
"version": "0.6.5",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
}
}
],
"websiteUrl": "https://github.com/bx33661/Wireshark-MCP"
}
2 changes: 1 addition & 1 deletion src/wireshark_mcp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Wireshark MCP - A Model Context Protocol server for Wireshark.
"""

__version__ = "0.6.4"
__version__ = "0.6.5"
7 changes: 7 additions & 0 deletions tests/test_server.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""Tests for server bootstrap behavior."""

from importlib import metadata

import wireshark_mcp
import wireshark_mcp.server as server


Expand Down Expand Up @@ -45,3 +48,7 @@ class FakePolicy:
server._configure_windows_event_loop()

assert applied == []


def test_package_version_matches_installed_metadata():
assert wireshark_mcp.__version__ == metadata.version("wireshark-mcp")
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.