|
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? |
Answered by
cofl
Nov 11, 2025
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/. |
3 replies
Answer selected by
cofl
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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/.