Skip to content

Commit 06b5527

Browse files
jonathanhefnerRahul-Lashkaridimitris-tjaydedmJose Sebastian
authored
Closes modelcontextprotocol#380 Closes modelcontextprotocol#448 Closes modelcontextprotocol#471 Closes modelcontextprotocol#492 Co-authored-by: Rahul Lashkari <[email protected]> Co-authored-by: Dimitris Tsapakidis <[email protected]> Co-authored-by: Jayde Mitchell <[email protected]> Co-authored-by: Jose Sebastian <[email protected]> Co-authored-by: "Yaroslav O. Halchenko" <[email protected]> Co-authored-by: Den Delimarsky 🌺 <[email protected]>
1 parent 876b03f commit 06b5527

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/clients.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ Programmatically assemble prompts for LLMs using [GenAIScript](https://microsoft
590590
- Full support of all major MCP features (tools, prompts, resources, and subscriptions)
591591
- Fast, seamless UI for debugging MCP capabilities
592592
- MCP config integration (Claude, VSCode, etc.) for fast first-time experience in testing MCPs
593-
- Integration with history, varibles, and collections for re-use and collaboration
593+
- Integration with history, variables, and collections for reuse and collaboration
594594

595595
### Slack MCP Client
596596

@@ -735,7 +735,7 @@ Theia AI and Theia IDE's MCP integration provide users with flexibility, making
735735

736736
### Witsy
737737

738-
[Witsy](https://github.com/nbonamy/witsy) is an AI desktop assistant, supoorting Anthropic models and MCP servers as LLM tools.
738+
[Witsy](https://github.com/nbonamy/witsy) is an AI desktop assistant, supporting Anthropic models and MCP servers as LLM tools.
739739

740740
**Key features:**
741741

docs/quickstart/client.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "For Client Developers"
33
description: "Get started building your own client that can integrate with all MCP servers."
44
---
55

6-
In this tutorial, you'll learn how to build a LLM-powered chatbot client that connects to MCP servers. It helps to have gone through the [Server quickstart](/quickstart/server) that guides you through the basic of building your first server.
6+
In this tutorial, you'll learn how to build an LLM-powered chatbot client that connects to MCP servers. It helps to have gone through the [Server quickstart](/quickstart/server) that guides you through the basics of building your first server.
77

88
<Tabs>
99
<Tab title="Python">

docs/quickstart/server.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ Create a new boot starter application using the `spring-ai-starter-mcp-client` d
10851085
```
10861086

10871087
and set the `spring.ai.mcp.client.stdio.servers-configuration` property to point to your `claude_desktop_config.json`.
1088-
You can re-use the existing Anthropic Desktop configuration:
1088+
You can reuse the existing Anthropic Desktop configuration:
10891089

10901090
```properties
10911091
spring.ai.mcp.client.stdio.servers-configuration=file:PATH/TO/claude_desktop_config.json
@@ -1573,7 +1573,7 @@ await app.RunAsync();
15731573

15741574
<Note>
15751575

1576-
When creating the `ApplicationHostBuilder`, ensure you use `CreateEmptyApplicationBuilder` instead of `CreateDefaultBuilder`. This ensures that the server does not write any additional messages to the console. This is only neccessary for servers using STDIO transport.
1576+
When creating the `ApplicationHostBuilder`, ensure you use `CreateEmptyApplicationBuilder` instead of `CreateDefaultBuilder`. This ensures that the server does not write any additional messages to the console. This is only necessary for servers using STDIO transport.
15771577

15781578
</Note>
15791579

docs/sdk/java/mcp-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ var mcpServer = McpServer.async(mcpServerTransportProvider)
508508
</Tabs>
509509

510510
The `McpSchema.CompletionReference` definition defines the type (`PromptRefernce` or `ResourceRefernce`) and the identifier for the completion specification (e.g handler).
511-
The handler function processes requests and returns the complition response.
511+
The handler function processes requests and returns the completion response.
512512
The first argument is `McpAsyncServerExchange` for client interaction, and the second argument is a `CompleteRequest` instance.
513513

514514
Check the [using completion](/sdk/java/mcp-client#using-completion) to learn how to use the completion capabilities on the client side.

docs/specification/draft/basic/authorization.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ MCP clients **MUST** have redirect URIs registered with the authorization server
286286
Authorization servers **MUST** validate exact redirect URIs against pre-registered values to prevent redirection attacks.
287287

288288
MCP clients **SHOULD** use and verify state parameters in the authorization code flow
289-
and discard any results that do not include or have a mis-match with the original state.
289+
and discard any results that do not include or have a mismatch with the original state.
290290

291291
Authorization servers **MUST** take precautions to prevent redirecting user agents to untrusted URI's, following suggestions laid out in [OAuth 2.1 Section 7.12.2](https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-12#section-7.12.2)
292292

0 commit comments

Comments
 (0)