We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84f70f4 commit 53515aeCopy full SHA for 53515ae
src/main/java/com/github/codeboyzhou/mcp/declarative/server/McpServerInfo.java
@@ -42,13 +42,13 @@ public Duration requestTimeout() {
42
@SuppressWarnings("unchecked")
43
public static class Builder<T extends Builder<T>> {
44
45
- protected String name;
+ protected String name = "mcp-server";
46
47
- protected String version;
+ protected String version = "1.0.0";
48
49
- protected String instructions;
+ protected String instructions = "";
50
51
- protected Duration requestTimeout;
+ protected Duration requestTimeout = Duration.ofSeconds(10);
52
53
protected T self() {
54
return (T) this;
0 commit comments