Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
For Model Context Protocol (MCP) servers or APIs that don't require any authentication, or for developer environments where authentication isn't yet implemented, plugins can access the MCP server or API anonymously.
This article uses MCP plugins as the default walkthrough. The same steps apply to API plugins built from an OpenAPI document, except where noted.
Unlike the other authentication schemes, anonymous access requires no registration, credentials, or auth config - you set the authentication type to None directly in the plugin manifest.
Add anonymous authentication to the plugin manifest
When you add an MCP server that requires no authentication in Microsoft 365 Agents Toolkit or through the declarative agent developer skill, the plugin manifest is set to None for you. Set it manually only when you edit an existing plugin manifest yourself.
To configure anonymous access, set the type property of the runtime authentication object to None.
"auth": {
"type": "None"
},
Note
Anonymous access is intended for development and testing. Add authentication before you deploy your plugin to production.