Fix domain parsing for VSCode marketplace installation #883
jumperck
started this conversation in
Backlog of Suggestions
Replies: 2 comments 1 reply
-
|
I have a code change ready, in case of need. But I'm just opening this issue first for discussion before submitting the Pull Request. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Thanks for the suggestion. The MCP Server has been out for 8+ months, and we don't have anyone else reporting this. I don't want to dismiss it, but I don't think it is something we are going to change right now. I will convert this to a discussion and keep an eye on it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
The VSCode MCP marketplace prompts users for
ado_domaininput, but entering"core,work,repositories"fails with error:Specified invalid domain 'core,work,repositories'.This reopens discussion from #800 with new context: the marketplace auto-generates the
ado_domaininput prompt (outside this repo's control), creating a UX disconnect where users are prompted for input that doesn't work.The Problem
When installing from marketplace:
ado_domaininput promptcore,work,repositoriesSpecified invalid domain 'core,work,repositories'Root cause:
DomainsManagerdoesn't split comma/space-separated values.Proposed Fix
Update
src/shared/domains.tsto accept flexible input formats:Implementation:
/[,\s]+/toDomainsManagertest/src/domains.test.tsREADME.mdwith supported formatsAlternative
Contact marketplace maintainers to remove/update the
ado_domaininput prompt metadata.Rules
Beta Was this translation helpful? Give feedback.
All reactions