Minor updates to book-library/manual-servlet-server

This commit is contained in:
Mark Pollack
2025-02-10 23:35:33 -05:00
parent 441e566813
commit 20ac610186
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ The sample provides:
## Building the Project
```bash
./mvnw clean package
./mvnw clean install -DskipTests
```
## Running the Server

View File

@@ -28,7 +28,7 @@ public class ClientStdio {
var stdioParams = ServerParameters.builder("java")
.args("-Dtransport.mode=stdio", "-Dspring.main.web-application-type=none", "-jar",
"model-context-protocol/mcp-servlet-server/target/mcp-servlet-server-0.0.1-SNAPSHOT.jar")
"model-context-protocol/book-library/manual-servlet-server/target/mcp-servlet-server-0.0.1-SNAPSHOT.jar")
.build();
var transport = new StdioClientTransport(stdioParams);