Skip to content

Commit 5ebe616

Browse files
committed
Another round of improving mkdocs docs
Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
1 parent 42887a8 commit 5ebe616

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
run: |
4040
PROJECT_VERSION=$(mvn help:evaluate -Dexpression=project.version --quiet -DforceStdout)
4141
if [[ "${PROJECT_VERSION}" == *-SNAPSHOT ]]; then
42-
ALIAS="dev"
42+
ALIAS="latest-snapshot"
4343
else
44-
ALIAS="prod"
44+
ALIAS="latest"
4545
fi
4646
mike deploy --push --update-aliases "${PROJECT_VERSION}" "${ALIAS}"
4747
mike set-default "${ALIAS}" --push
@@ -50,5 +50,5 @@ jobs:
5050
if: github.event_name == 'release'
5151
run: |
5252
VERSION=${GITHUB_REF_NAME}
53-
mike deploy --push --update-aliases "${VERSION}" release
54-
mike set-default release --push
53+
mike deploy --push --update-aliases "${VERSION}" latest
54+
mike set-default latest --push

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ This SDK enables Java applications to interact with AI models and tools through
1313
#### MCP Java SDK documentation
1414
For comprehensive guides and SDK API documentation
1515

16-
- [Features](https://modelcontextprotocol.github.io/java-sdk/dev/#features) - Overview the features provided by the Java MCP SDK
17-
- [Architecture](https://modelcontextprotocol.github.io/java-sdk/dev/#architecture) - Java MCP SDK architecture overview.
18-
- [Java Dependencies / BOM](https://modelcontextprotocol.github.io/java-sdk/dev/quickstart/#dependencies) - Java dependencies and BOM.
19-
- [Java MCP Client](https://modelcontextprotocol.github.io/java-sdk/dev/client/) - Learn how to use the MCP client to interact with MCP servers.
20-
- [Java MCP Server](https://modelcontextprotocol.github.io/java-sdk/dev/server/) - Learn how to implement and configure a MCP servers.
16+
- [Features](https://modelcontextprotocol.github.io/java-sdk/#features) - Overview the features provided by the Java MCP SDK
17+
- [Architecture](https://modelcontextprotocol.github.io/java-sdk/#architecture) - Java MCP SDK architecture overview.
18+
- [Java Dependencies / BOM](https://modelcontextprotocol.github.io/java-sdk/quickstart/#dependencies) - Java dependencies and BOM.
19+
- [Java MCP Client](https://modelcontextprotocol.github.io/java-sdk/client/) - Learn how to use the MCP client to interact with MCP servers.
20+
- [Java MCP Server](https://modelcontextprotocol.github.io/java-sdk/server/) - Learn how to implement and configure a MCP servers.
2121

2222
#### Spring AI MCP documentation
2323
[Spring AI MCP](https://docs.spring.io/spring-ai/reference/api/mcp/mcp-overview.html) extends the MCP Java SDK with Spring Boot integration, providing both [client](https://docs.spring.io/spring-ai/reference/api/mcp/mcp-client-boot-starter-docs.html) and [server](https://docs.spring.io/spring-ai/reference/api/mcp/mcp-server-boot-starter-docs.html) starters.

mkdocs.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,20 +81,18 @@ markdown_extensions:
8181
- toc:
8282
permalink: true
8383

84-
plugins:
85-
- search
86-
- blog
87-
8884
extra:
8985
version:
9086
provider: mike
9187
alias: true
9288
default:
93-
- dev
89+
- latest-snapshot
9490
- latest
95-
- prod
96-
- release
9791
social:
9892
- icon: fontawesome/brands/github
9993
link: https://github.com/modelcontextprotocol/java-sdk
10094
generator: false
95+
96+
plugins:
97+
- search
98+
- blog

0 commit comments

Comments
 (0)