Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix typos in mcp common module #2642

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ public static List<McpServerFeatures.SyncToolRegistration> toSyncToolRegistratio
}

/**
* Converts a list of Spring AI tool callbacks to MCP synchronous tool specificaiton.
* Converts a list of Spring AI tool callbacks to MCP synchronous tool specification.
* <p>
* This method processes multiple tool callbacks in bulk, converting each one to its
* corresponding MCP tool registration while maintaining synchronous execution
* semantics.
* @param toolCallbacks the list of tool callbacks to convert
* @return a list of MCP synchronous tool specificaiton
* @return a list of MCP synchronous tool specification
*/
public static List<McpServerFeatures.SyncToolSpecification> toSyncToolSpecification(
List<ToolCallback> toolCallbacks) {
Expand Down Expand Up @@ -142,7 +142,7 @@ public static List<McpServerFeatures.SyncToolRegistration> toSyncToolRegistratio
* This is a varargs wrapper around {@link #toSyncToolSpecification(List)} for easier
* usage when working with individual callbacks.
* @param toolCallbacks the tool callbacks to convert
* @return a list of MCP synchronous tool specificaiton
* @return a list of MCP synchronous tool specification
*/
public static List<McpServerFeatures.SyncToolSpecification> toSyncToolSpecifications(
ToolCallback... toolCallbacks) {
Expand Down Expand Up @@ -308,7 +308,7 @@ public static List<McpServerFeatures.AsyncToolRegistration> toAsyncToolRegistrat
}

/**
* Converts a list of Spring AI tool callbacks to MCP asynchronous tool specificaiton.
* Converts a list of Spring AI tool callbacks to MCP asynchronous tool specification.
* <p>
* This method processes multiple tool callbacks in bulk, converting each one to its
* corresponding MCP tool registration while adding asynchronous execution
Expand Down Expand Up @@ -338,7 +338,7 @@ public static List<McpServerFeatures.AsyncToolRegistration> toAsyncToolRegistrat

/**
* Convenience method to convert a variable number of tool callbacks to MCP
* asynchronous tool specificaiton.
* asynchronous tool specification.
* <p>
* This is a varargs wrapper around {@link #toAsyncToolSpecifications(List)} for
* easier usage when working with individual callbacks.
Expand Down Expand Up @@ -452,21 +452,21 @@ public static McpServerFeatures.AsyncToolRegistration toAsyncToolRegistration(To
* This method enables Spring AI tools to be exposed as asynchronous MCP tools that
* can be discovered and invoked by language models. The conversion process:
* <ul>
* <li>First converts the callback to a synchronous specificaiton</li>
* <li>First converts the callback to a synchronous specification</li>
* <li>Wraps the synchronous execution in a reactive Mono</li>
* <li>Configures execution on a bounded elastic scheduler for non-blocking
* operation</li>
* </ul>
* <p>
* The resulting async specificaiton will:
* The resulting async specification will:
* <ul>
* <li>Execute the tool without blocking the calling thread</li>
* <li>Handle errors and results asynchronously</li>
* <li>Provide backpressure through Project Reactor</li>
* </ul>
* @param toolCallback the Spring AI tool callback to convert
* @param mimeType the MIME type of the output content
* @return an MCP asynchronous tool specificaiotn that wraps the tool callback
* @return an MCP asynchronous tool specification that wraps the tool callback
* @see McpServerFeatures.AsyncToolSpecification
* @see Schedulers#boundedElastic()
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void getToolCallbacksShouldThrowExceptionForDuplicateToolNames() {
}

@Test
void getSameNameToolsButDifferntClientInfoNamesShouldProduceDifferentToolCallbackNames() {
void getSameNameToolsButDifferentClientInfoNamesShouldProduceDifferentToolCallbackNames() {

Tool tool1 = mock(Tool.class);
when(tool1.name()).thenReturn("sameName");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void callShouldHandleJsonInputAndOutput() {
}

@Test
void callShoulIngroeToolContext() {
void callShouldIgnoreToolContext() {
// when(mcpClient.getClientInfo()).thenReturn(new Implementation("testClient",
// "1.0.0"));

Expand Down
Loading