fix: rebranding, see [docs/name-change.md](docs/name-change.md) for details

This commit is contained in:
Fahad
2025-12-04 18:11:55 +04:00
parent bcfaccecd4
commit b2dc84992d
122 changed files with 1423 additions and 1056 deletions

View File

@@ -1,7 +1,7 @@
"""
Version Tool - Display Zen MCP Server version and system information
Version Tool - Display PAL MCP Server version and system information
This tool provides version information about the Zen MCP Server including
This tool provides version information about the PAL MCP Server including
version number, last update date, author, and basic system information.
It also checks for updates from the GitHub repository.
"""
@@ -90,7 +90,7 @@ def fetch_github_version() -> Optional[tuple[str, str]]:
logger.warning("urllib not available, cannot check for updates")
return None
github_url = "https://raw.githubusercontent.com/BeehiveInnovations/zen-mcp-server/main/config.py"
github_url = "https://raw.githubusercontent.com/BeehiveInnovations/pal-mcp-server/main/config.py"
try:
# Set a 10-second timeout
@@ -126,7 +126,7 @@ def fetch_github_version() -> Optional[tuple[str, str]]:
class VersionTool(BaseTool):
"""
Tool for displaying Zen MCP Server version and system information.
Tool for displaying PAL MCP Server version and system information.
This tool provides:
- Current server version
@@ -176,7 +176,7 @@ class VersionTool(BaseTool):
async def execute(self, arguments: dict[str, Any]) -> list[TextContent]:
"""
Display Zen MCP Server version and system information.
Display PAL MCP Server version and system information.
This overrides the base class execute to provide direct output without AI model calls.
@@ -186,7 +186,7 @@ class VersionTool(BaseTool):
Returns:
Formatted version and system information
"""
output_lines = ["# Zen MCP Server Version\n"]
output_lines = ["# PAL MCP Server Version\n"]
# Server version information
output_lines.append("## Server Information")