|
| 1 | +# CHANGELOG |
| 2 | + |
| 3 | +## v1.0.0 (2025-10-31) |
| 4 | + |
| 5 | +### 🚨 BREAKING CHANGES |
| 6 | + |
| 7 | +**Simpler installation and execution.** The server now uses a standard Python package layout with a dedicated command. You'll need to update your configuration: |
| 8 | + |
| 9 | +- **Command change**: `uv run server.py` → `uv run netbox-mcp-server` |
| 10 | +- **Claude Desktop/Code**: Update `args` to use `netbox-mcp-server` instead of `server.py` |
| 11 | +- **Docker**: Rebuild images (CMD updated to use new entry point) |
| 12 | + |
| 13 | +See [README.md](README.md) for updated configuration examples. |
| 14 | + |
| 15 | +### What's New |
| 16 | + |
| 17 | +#### Enhanced Search & Querying |
| 18 | + |
| 19 | +- **Global search across object types**: New `netbox_search_objects` tool lets you search for devices, sites, IP addresses, and more in a single query |
| 20 | +- **Selective field filtering**: Reduce token usage by requesting only the fields you need (e.g., just `name` and `status` instead of complete objects) |
| 21 | +- **Smarter pagination**: Control result set sizes with `limit` and `offset` parameters, plus automatic `count`, `next`, and `previous` metadata for navigating large datasets |
| 22 | +- **Custom result ordering**: Sort results by any field with the `ordering` parameter (e.g., `-name` for reverse alphabetical, or `['site', '-id']` for multi-field sorting) |
| 23 | +- **Better error messages**: Input validation now catches unsupported filter patterns before they reach the NetBox API |
| 24 | + |
| 25 | +#### Easier Deployment & Configuration |
| 26 | + |
| 27 | +- **Simple command**: Run with `netbox-mcp-server` instead of `python server.py` |
| 28 | +- **Docker support**: Official Dockerfile for containerized deployments |
| 29 | +- **Flexible configuration**: Pass settings via environment variables or command-line arguments |
| 30 | +- **Configurable logging**: Set `LOG_LEVEL` environment variable to control verbosity (default: INFO) |
| 31 | + |
| 32 | +#### Security & Reliability |
| 33 | + |
| 34 | +- **Security update**: Upgraded to FastMCP 2.13 to address security vulnerability |
| 35 | +- **Production-ready**: Comprehensive CI/CD pipeline with automated testing against live NetBox instances |
| 36 | + |
| 37 | +--- |
| 38 | + |
| 39 | +## v0.1.0 (2025-10-14) |
| 40 | + |
| 41 | +- Initial Release |
0 commit comments