ping
Check server connectivity and status for the Naver Mail MCP Server to verify operational readiness before performing mail operations.
Instructions
서버 상태 확인
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:373-374 (handler)Handler logic for the 'ping' tool which returns a server status message.
elif name == "ping": return [TextContent(type="text", text="MCP Server is running")] - server.py:279-286 (registration)Registration of the 'ping' tool in the list_tools definition.
name="ping", description="서버 상태 확인", inputSchema={ "type": "object", "properties": {}, "additionalProperties": False, } )