15 lines
345 B
Python
15 lines
345 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Maya MCP Port Configuration
|
|
This module provides port configuration for the Maya MCP server.
|
|
|
|
Version: 1.0.0
|
|
Author: Jeffrey Tsai
|
|
"""
|
|
|
|
# Server configuration
|
|
SERVER_HOST = "127.0.0.1" # Bind to localhost for security
|
|
SERVER_PORT = 4550 # Use port 4550 as in the original configuration
|