debug_env
Diagnose environment variables and server status for the Naver Mail MCP Server to identify configuration issues and ensure proper mail integration functionality.
Instructions
환경 변수 및 서버 상태 디버깅
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:365-371 (handler)The handler implementation for the debug_env tool.
elif name == "debug_env": debug_info = { "naver_id": "***" if NAVER_ID else None, "naver_password": "***" if NAVER_PASSWORD else None, "working_dir": os.getcwd(), } return [TextContent(type="text", text=f"Debug Info:\n{debug_info}")] - server.py:269-277 (registration)Tool registration for debug_env.
Tool( name="debug_env", description="환경 변수 및 서버 상태 디버깅", inputSchema={ "type": "object", "properties": {}, "additionalProperties": False, } ),