-
|
My employer has an extremely strict no-AI-tools policy, to the point that "just don't use it" isn't an option. While there's documentation on disabling the Copilot integration, there does not seem to be an equivalent toggle for the MCP server, meaning we're hard-blocked from implementing newer Aspire versions. Am I missing something, or is sticking to 9.5 our only option? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
I found my answer buried in old documentation: https://learn.microsoft.com/en-us/dotnet/aspire/fundamentals/dashboard/configuration?tabs=bash#mcp For anyone else coming across this, the quick solution is to add the following to {
"profiles": {
"...for each profile...": {
"environmentVariables": {
...
"Dashboard__Mcp__Disabled": "true"
}
}
}
}This is likely something that should be added to https://aspire.dev/dashboard/mcp-server/. |
Beta Was this translation helpful? Give feedback.
I found my answer buried in old documentation: https://learn.microsoft.com/en-us/dotnet/aspire/fundamentals/dashboard/configuration?tabs=bash#mcp
For anyone else coming across this, the quick solution is to add the following to
Properties/launchSettings.jsonin your Aspire project:{ "profiles": { "...for each profile...": { "environmentVariables": { ... "Dashboard__Mcp__Disabled": "true" } } } }This is likely something that should be added to https://aspire.dev/dashboard/mcp-server/.