We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in quarkus-mcp-servers I added a 'shared' module which does a few small but nice things:
--sse
--debug
as is today it is with the above it ispossible to do:
quarkus create app -x io.quarkiverse.mcp.servers:mcp-server-shared:1.0.0.CR3 mcpapp and you have an app (no code starter)
quarkus create app -x io.quarkiverse.mcp.servers:mcp-server-shared:1.0.0.CR3 mcpapp
I would suggest we add/move this shared module to quarkus-mcp-server + add a base codestart example so something like:
quarkus create app -x mcp-server-shared myapp would be sufficient.
quarkus create app -x mcp-server-shared myapp
But shared probably is not a good name. Maybe app? so it would be ``quarkus create app -x mcp-server-app myapp` ?
shared
wdyt?
The text was updated successfully, but these errors were encountered:
just realizing the isn't actually an extension but just a normal dependency; so can't do it in its current form.
Sorry, something went wrong.
No branches or pull requests
in quarkus-mcp-servers I added a 'shared' module which does a few small but nice things:
--sse
activates SSE instead of default stdio; especially useful for devmode.--debug
activates loggingas is today it is with the above it ispossible to do:
quarkus create app -x io.quarkiverse.mcp.servers:mcp-server-shared:1.0.0.CR3 mcpapp
and you have an app (no code starter)I would suggest we add/move this shared module to quarkus-mcp-server + add a base codestart example so something like:
quarkus create app -x mcp-server-shared myapp
would be sufficient.But
shared
probably is not a good name. Maybe app? so it would be ``quarkus create app -x mcp-server-app myapp` ?wdyt?
The text was updated successfully, but these errors were encountered: