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

feat(McpSchema): Add constructor to CallToolResult with one String entry #87

Conversation

denniskawurek
Copy link
Contributor

Adds a new constructor to CallToolResult which allows passing just a String.
The string argument is mapped to a List with just one TextContent element and makes the usage of creating a CallToolResult easier.

Motivation and Context

The Javadoc for the usage of CallToolResult is diverging from the implementation at serveral places.

As an example McpServer.java has the following example:

McpServer.sync(transportProvider)
 .serverInfo("my-server", "1.0.0")
 .tool(new Tool("calculator", "Performs calculations", schema),
  (exchange, args) -> new CallToolResult("Result: " + calculate(args)))
 .build();

But currently the CallToolResult expects different arguments and should be:

CallToolResult(
 List.of(
  new TextContent("Result: " + calculate(expr))
 ),
 false
)

As this can be confusing for new users of the SDK, I thought first that the documentation should be changed.

But on the other hand it's nice to have an easy way to create a CallToolResult with just one String entry.
This would enhance the readability of a codebase and make the usage easier.

This change enables the usage by adding an additional constructor to CallToolResult.

How Has This Been Tested?

Tested it only manually. I can add (Unit) tests if wanted.

Breaking Changes

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update

Checklist

  • I have read the MCP Documentation
  • My code follows the repository's style guidelines
  • New and existing tests pass locally
  • I have added appropriate error handling
  • I have added or updated documentation as needed

Additional context

List.of(new TextContent(content)),
isError
);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how about another success and failed one?

@tzolov
Copy link
Contributor

tzolov commented Apr 2, 2025

Thanks you @denniskawurek ! Will review it over the weekend
It's been a very heckling week me.

@tzolov tzolov self-assigned this Apr 2, 2025
@tzolov tzolov added this to the 0.9.0 milestone Apr 5, 2025
tzolov added a commit that referenced this pull request Apr 5, 2025
…ments (#87)

- Add constructor to CallToolResult with one String entry
- Add a new constructor to CallToolRequest that accepts JSON string arguments
- Implement a builder pattern for CallToolResult with methods for adding content items
- Add test coverage for new functionality

Signed-off-by: Christian Tzolov <[email protected]>
Co-authored-by: Christian Tzolov <[email protected]>
@tzolov
Copy link
Contributor

tzolov commented Apr 5, 2025

Thank you @denniskawurek,
I did some additional, usability, improvements to the CallToolResult and CallToolRequest.
Rebased, extended and merged at 8d5872f

@tzolov tzolov closed this Apr 5, 2025
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 this pull request may close these issues.

3 participants