Rebrand to GetOdooMCP

Renames all user-facing branding to match the new getodoomcp.com domain:
default MCP server name (shown to MCP clients during the initialize
handshake), password-reset email subject/from-address. Internal Python
package name (mt_odoo_mcp) deliberately left unchanged — renaming it would
require updating every import plus the deployed systemd/pm2 invocation,
for zero user-visible benefit.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
MOHAN 2026-07-05 02:48:53 +05:30
parent 721cde8e9f
commit 23a14a9710
3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
# ─── Server ────────────────────────────────────────────────────────────────── # ─── Server ──────────────────────────────────────────────────────────────────
HOST=0.0.0.0 HOST=0.0.0.0
PORT=8000 PORT=8000
MCP_SERVER_NAME=mt-odoo-mcp MCP_SERVER_NAME=getodoomcp
MCP_LOG_LEVEL=INFO MCP_LOG_LEVEL=INFO
# Base URL clients use to reach this server — shown in signup/regen-key API responses # Base URL clients use to reach this server — shown in signup/regen-key API responses
@ -39,7 +39,7 @@ SMTP_HOST=
SMTP_PORT=587 SMTP_PORT=587
SMTP_USER= SMTP_USER=
SMTP_PASSWORD= SMTP_PASSWORD=
SMTP_FROM_EMAIL=no-reply@odoomcp.cloud SMTP_FROM_EMAIL=no-reply@getodoomcp.com
# Used to build the reset-password link sent to users — no trailing slash # Used to build the reset-password link sent to users — no trailing slash
FRONTEND_BASE_URL=https://getodoomcp.com FRONTEND_BASE_URL=https://getodoomcp.com

View File

@ -8,7 +8,7 @@ class Settings(BaseSettings):
# Server # Server
host: str = "0.0.0.0" host: str = "0.0.0.0"
port: int = 8000 port: int = 8000
mcp_server_name: str = "mt-odoo-mcp" mcp_server_name: str = "getodoomcp"
mcp_log_level: str = "INFO" mcp_log_level: str = "INFO"
# Public URL (used in API responses so clients know where to connect) # Public URL (used in API responses so clients know where to connect)
@ -37,7 +37,7 @@ class Settings(BaseSettings):
smtp_port: int = 587 smtp_port: int = 587
smtp_user: str = "" smtp_user: str = ""
smtp_password: str = "" smtp_password: str = ""
smtp_from_email: str = "no-reply@odoomcp.cloud" smtp_from_email: str = "no-reply@getodoomcp.com"
frontend_base_url: str = "http://localhost:3000" frontend_base_url: str = "http://localhost:3000"
# Admin panel — single hardcoded operator identity, not tied to the users table # Admin panel — single hardcoded operator identity, not tied to the users table

View File

@ -19,7 +19,7 @@ def send_password_reset_email(to_email: str, reset_link: str) -> None:
return return
msg = EmailMessage() msg = EmailMessage()
msg["Subject"] = "Reset your OdooMCP Cloud password" msg["Subject"] = "Reset your GetOdooMCP password"
msg["From"] = settings.smtp_from_email msg["From"] = settings.smtp_from_email
msg["To"] = to_email msg["To"] = to_email
msg.set_content( msg.set_content(