@antonytm/mcp-sitecore-server 0.20.2 → 0.20.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Model Context Protocol server for Sitecore
2
2
 
3
3
  [![Build](https://github.com/antonytm/mcp-sitecore-server/actions/workflows/publish-npm.yml/badge.svg)](https://github.com/Antonytm/mcp-sitecore-server/actions/workflows/publish-npm.yml)
4
-
5
4
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
5
+ [![smithery badge](https://smithery.ai/badge/@Antonytm/mcp-sitecore-server)](https://smithery.ai/server/@Antonytm/mcp-sitecore-server)
6
6
 
7
7
  ## Implemented tools
8
8
 
@@ -116,7 +116,7 @@ AI Agents may have limit on the amount of tools they can use. Please make sure t
116
116
 
117
117
  ## Installation
118
118
 
119
- Add the following Model Context Protocol server to your Cursor, VS Code, Claud:
119
+ Add the following Model Context Protocol server to your Cursor, VS Code, Claude:
120
120
 
121
121
  ```json
122
122
  "Sitecore": {
@@ -143,7 +143,7 @@ Add the following Model Context Protocol server to your Cursor, VS Code, Claud:
143
143
 
144
144
  ### Environment Variables Description
145
145
 
146
- - `TRANSPORT`: The transport protocol to use. Options are `stdio` or `sse`.
146
+ - `TRANSPORT`: The transport protocol to use. Options are `streamable-http`, `stdio` or `sse`.
147
147
  - `GRAPHQL_ENDPOINT`: The GraphQL endpoint URL for the Sitecore instance.
148
148
  - `GRAPHQL_SCHEMAS`: The Sitecore schemas to use for the GraphQL API, comma-separated.
149
149
  - `GRAPHQL_API_KEY`: The API key for the GraphQL endpoint.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antonytm/mcp-sitecore-server",
3
- "version": "0.20.2",
3
+ "version": "0.20.4",
4
4
  "description": "A Model Context Protocol server for Sitecore",
5
5
  "files": [
6
6
  "dist",
@@ -24,13 +24,13 @@
24
24
  "start:stdio": "npm run build && cross-env TRANSPORT=stdio node dist/index.js",
25
25
  "run": "npm run build && node dist/run.js",
26
26
  "test": "npm run build && npm run bundle && vitest run",
27
- "docker:windows:build": "docker build -t antonytm/mcp-sitecore-windows:0.20.2 -t antonytm/mcp-sitecore-windows:latest --file .\\docker\\windows\\Dockerfile .",
27
+ "docker:windows:build": "docker build -t antonytm/mcp-sitecore-windows:0.20.4 -t antonytm/mcp-sitecore-windows:latest --file .\\docker\\windows\\Dockerfile .",
28
28
  "docker:windows:run": "docker run -it --rm -p 4001:3001 antonytm/mcp-sitecore-windows:latest",
29
- "docker:windows:push": "docker push antonytm/mcp-sitecore-windows:0.20.2 && docker push antonytm/mcp-sitecore-windows:latest",
29
+ "docker:windows:push": "docker push antonytm/mcp-sitecore-windows:0.20.4 && docker push antonytm/mcp-sitecore-windows:latest",
30
30
  "docker:windows": "npm run docker:windows:build && npm run docker:windows:push",
31
- "docker:linux:build": "docker build -t antonytm/mcp-sitecore-linux:0.20.2 -t antonytm/mcp-sitecore-linux:latest --file ./docker/linux/Dockerfile .",
31
+ "docker:linux:build": "docker build -t antonytm/mcp-sitecore-linux:0.20.4 -t antonytm/mcp-sitecore-linux:latest --file ./docker/linux/Dockerfile .",
32
32
  "docker:linux:run": "docker run -it --rm -p 4001:3001 antonytm/mcp-sitecore-linux:latest",
33
- "docker:linux:push": "docker push antonytm/mcp-sitecore-linux:0.20.2 && docker push antonytm/mcp-sitecore-linux:latest",
33
+ "docker:linux:push": "docker push antonytm/mcp-sitecore-linux:0.20.4 && docker push antonytm/mcp-sitecore-linux:latest",
34
34
  "docker:linux": "npm run docker:linux:build && npm run docker:linux:push"
35
35
  },
36
36
  "dependencies": {