Share via

Azure Function MCP endpoints 404

Hua, Daniel 20 Reputation points
2025-08-29T07:05:42.3133333+00:00

I have a MCP Azure Function instance running on fa-dh-lab-mcp-test-fyakaubzhqd5aqev.eastus-01.azurewebsites.net and the MCP endpoint should be /runtime/webhooks/mcp/sse

Few hours ago, when I tried to access the MCP functions using

https://fa-dh-lab-mcp-test-fyakaubzhqd5aqev.eastus-01.azurewebsites.net/runtime/webhooks/mcp/sse?code=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

, it succeeded without any problem, but just now, all the requests return 404. Is there any update on Azure side?

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.


Answer accepted by question author

Anonymous
2025-09-02T12:50:41.8266667+00:00

Hello Hua, Daniel

Thanks for reaching out on Microsoft Q&A and really appreciate your patience while we looked into this.

host.json file is currently referencing the Preview extension bundle:

{
  "version": "2.0",
  "isDefaultHostConfig": true,
  "extensionBundle": {
    "id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
    "version": "[4.*, 5.0.0)"
  }
}

Please update host.json to the following and check if the issue persists:

{
  "version": "2.0",
  "extensionBundle": {
json
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[4.0.0, 5.0.0)"
  }
}

Let us know if this resolves the problem or if you need further assistance.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.