Jeremiah Lowin zzstoatzz commited on
Commit
2428b0b
·
unverified ·
1 Parent(s): 8bd5d84

Update docs/deployment/running-server.mdx

Browse files

Co-authored-by: nate nowack <nate@prefect.io>

Files changed (1) hide show
  1. docs/deployment/running-server.mdx +1 -1
docs/deployment/running-server.mdx CHANGED
@@ -266,7 +266,7 @@ mcp = FastMCP("MyServer")
266
 
267
  @mcp.custom_route("/health", methods=["GET"])
268
  async def health_check(request: Request) -> PlainTextResponse:
269
- return PlainTextResponse("OK")return JSONResponse({"status": "healthy"})
270
 
271
  if __name__ == "__main__":
272
  mcp.run()
 
266
 
267
  @mcp.custom_route("/health", methods=["GET"])
268
  async def health_check(request: Request) -> PlainTextResponse:
269
+ return PlainTextResponse("OK")
270
 
271
  if __name__ == "__main__":
272
  mcp.run()