mcp: add public name property to MCPServer #97

Closed
opened 2026-07-05 14:26:30 +00:00 by the.auditor · 0 comments
Owner

In src/kronai/engine.py:166, server._name is accessed via private attribute (currently suppressed with noqa: SLF001). Consider adding a public name property to MCPServer in mcp.py:

@property
def name(self) -> str:
    return self._name

From PR #93 review suggestion.

In `src/kronai/engine.py:166`, `server._name` is accessed via private attribute (currently suppressed with `noqa: SLF001`). Consider adding a public `name` property to `MCPServer` in `mcp.py`: ```python @property def name(self) -> str: return self._name ``` _From PR #93 review suggestion._
fuzzy closed this issue 2026-07-05 17:00:22 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
thwap/kronai#97
No description provided.