You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/community/sep-guidelines.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Consider proposing a SEP if your change involves any of the following:
31
31
There are three kinds of SEP:
32
32
33
33
1.**Standards Track** SEP describes a new feature or implementation for the Model Context Protocol. It may also describe an interoperability standard that will be supported outside the core protocol specification.
34
-
2.**Informational** SEP describes a Model Context Protocol design issue, or provides general guidelines or information to the MCP community, but does not propose a new feature. Informational SEPs do not necessarily represent a MCP community consensus or recommendation.
34
+
2.**Informational** SEP describes a Model Context Protocol design issue, or provides general guidelines or information to the MCP community, but does not propose a new feature. Informational SEPs do not necessarily represent an MCP community consensus or recommendation.
35
35
3.**Process** SEP describes a process surrounding MCP, or proposes a change to (or an event in) a process. Process SEPs are like Standards Track SEPs but apply to areas other than the MCP protocol itself.
Copy file name to clipboardExpand all lines: docs/docs/learn/architecture.mdx
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -372,7 +372,6 @@ The request structure includes several important components:
372
372
1.**`name`**: Must match exactly the tool name from the discovery response (`weather_current`). This ensures the server can correctly identify which tool to execute.
373
373
374
374
2.**`arguments`**: Contains the input parameters as defined by the tool's `inputSchema`. In this example:
375
-
376
375
-`location`: "San Francisco" (required parameter)
377
376
-`units`: "imperial" (optional parameter, defaults to "metric" if not specified)
This creates a MCP client that will connect to a server that is provided as a command line argument. It then lists the available tools from the connected server.
1540
+
This creates an MCP client that will connect to a server that is provided as a command line argument. It then lists the available tools from the connected server.
Copy file name to clipboardExpand all lines: docs/quickstart/server.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1076,7 +1076,7 @@ Save the file, and restart **Claude for Desktop**.
1076
1076
1077
1077
## Testing your server with Java client
1078
1078
1079
-
### Create a MCP Client manually
1079
+
### Create an MCP Client manually
1080
1080
1081
1081
Use the `McpClient` to connect to the server:
1082
1082
@@ -1127,7 +1127,7 @@ For more information, see the [MCP Client Boot Starters](https://docs.spring.io/
1127
1127
1128
1128
## More Java MCP Server examples
1129
1129
1130
-
The [starter-webflux-server](https://github.com/spring-projects/spring-ai-examples/tree/main/model-context-protocol/weather/starter-webflux-server) demonstrates how to create a MCP server using SSE transport.
1130
+
The [starter-webflux-server](https://github.com/spring-projects/spring-ai-examples/tree/main/model-context-protocol/weather/starter-webflux-server) demonstrates how to create an MCP server using SSE transport.
1131
1131
It showcases how to define and register MCP Tools, Resources, and Prompts, using the Spring Boot's auto-configuration capabilities.
0 commit comments