From 44330591c56b15580d179b1d1556f4939d587fec Mon Sep 17 00:00:00 2001 From: Paul Robinson Date: Thu, 10 Apr 2025 11:20:36 +0100 Subject: [PATCH] Fixed JDBC server URL --- _posts/2025-01-29-introducing-mcp-servers.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2025-01-29-introducing-mcp-servers.adoc b/_posts/2025-01-29-introducing-mcp-servers.adoc index 17e9f16270a..f5b208b3ea1 100644 --- a/_posts/2025-01-29-introducing-mcp-servers.adoc +++ b/_posts/2025-01-29-introducing-mcp-servers.adoc @@ -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.