Skip to content
New issue

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

Unable to set server instructions, always null #98

Closed
codezjx opened this issue Apr 1, 2025 · 1 comment · Fixed by #99
Closed

Unable to set server instructions, always null #98

codezjx opened this issue Apr 1, 2025 · 1 comment · Fixed by #99
Assignees

Comments

@codezjx
Copy link
Contributor

codezjx commented Apr 1, 2025

Bug description

Server Instructions always null and unable to change, server response as following:

19:52:30.866 [pool-1-thread-1] INFO i.m.client.McpAsyncClient - Server response with Protocol: 2024-11-05, Capabilities: ServerCapabilities[experimental=null, logging=LoggingCapabilities[], prompts=null, resources=null, tools=ToolCapabilities[listChanged=false]], Info: Implementation[name=stdio-server-example, version=1.0.0] and Instructions null

Environment
MCP Java sdk version: 0.9.0-SNAPSHOT

Expected behavior
Support set instructions when init, eg:

McpSyncServer server = McpServer.sync(transport)
    .serverInfo("stdio-server-example", "1.0.0")
    .instructions("This is a simple MCP server example that provides two tools: xxxx.")
    .tool(xxx)
    .build();

Source code
It seems that Instructions is currently fixed to null

return Mono.just(new McpSchema.InitializeResult(serverProtocolVersion, this.serverCapabilities,
this.serverInfo, null));

@tzolov
Copy link
Contributor

tzolov commented Apr 2, 2025

Yeh, this looks like an issue. Thanks for catching it @codezjx . Will try to review it over the weekend.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants