Open
Description
Code of Conduct
- I have read and agree to the GitHub Docs project's Code of Conduct
What article on docs.github.com is affected?
What changes are you suggesting?
In the Azrue MCP Server settings, the following error occurs because the type is not specified.
Schema validation failed: /mcpServers/Azure Server 'Azure' is missing required property 'type'. Must be 'local', 'http', or 'sse'
For MCP Server settings, we recommend adding the type specification as follows.
{
"mcpServers": {
"Azure": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@azure/mcp@latest",
"server",
"start"
],
"tools": ["*"]
}
}
}
Additional information
No response