Skip to content

Commit bb8fa39

Browse files
chore(release): 1.0.0
1 parent d2ac0b2 commit bb8fa39

File tree

4 files changed

+45
-4
lines changed

4 files changed

+45
-4
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "netbox-mcp-server"
7-
version = "0.1.0"
7+
version = "1.0.0"
88
description = "A read-only MCP server for NetBox"
99
readme = "README.md"
1010
requires-python = ">=3.13,<3.14"

src/netbox_mcp_server/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""NetBox MCP Server - Read-only MCP server for NetBox infrastructure data."""
22

3-
__version__ = "0.1.0" # Auto-managed by semantic-release
3+
__version__ = "1.0.0" # Auto-managed by semantic-release
44

55
__all__ = ["NetBoxRestClient", "NETBOX_OBJECT_TYPES", "Settings"]
66

7+
from netbox_mcp_server.config import Settings
78
from netbox_mcp_server.netbox_client import NetBoxRestClient
89
from netbox_mcp_server.netbox_types import NETBOX_OBJECT_TYPES
9-
from netbox_mcp_server.config import Settings

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)