Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _posts/2025-01-29-introducing-mcp-servers.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ Then in your MCP client configure it with:

For example to run the JDBC server to connect to a MariaDB database you would do:

`jbang mcp-jdbc-server@quarkiverse/quarkus-mcp-servers jdbc:mariadb://localhost:3306/test --user root --password mysecretpassword`
`jbang jdbc@quarkiverse/quarkus-mcp-servers jdbc:mariadb://localhost:3306/test --user root --password mysecretpassword`

or use a downlodable SQLite database of Netflix movies:

`jbang mcp-jdbc-server@quarkiverse/quarkus-mcp-servers jdbc:sqlite:%{https://github.com/lerocha/netflixdb/releases/download/v1.0.0/netflixdb.sqlite}`
`jbang jdbc@quarkiverse/quarkus-mcp-servers jdbc:sqlite:%{https://github.com/lerocha/netflixdb/releases/download/v1.0.0/netflixdb.sqlite}`

TIP: Tthe `%{}` syntax is a JBang feature to download a file from a URL in the command line and use it as a local file.

Expand Down