health_check
Verify server functionality and resource accessibility to ensure smooth operation and integration with LLM clients for technical content optimization.
Instructions
Check if the server is running and can access its resources
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/osp_marketing_tools/server.py:21-28 (handler)The health_check tool handler function, decorated with @mcp.tool() for registration. It returns a fixed dictionary confirming the server is healthy, listing resources, and providing the version.@mcp.tool() async def health_check() -> dict: """Check if the server is running and can access its resources""" return { "status": "healthy", "resources": ["osp://marketing-tools"], "version": "0.1.0" }