health_check
Verify server operation status by returning a health check response. Ensures the Video & Audio Editing MCP Server is functional for processing FFmpeg-based media operations.
Instructions
Returns a simple health status to confirm the server is running.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:13-16 (handler)The health_check tool implementation: a FastMCP-decorated function that returns a static string confirming server health. This decorator also handles registration.@mcp.tool() def health_check() -> str: """Returns a simple health status to confirm the server is running.""" return "Server is healthy!"