@modelcontextprotocol/server-everything 2026.7.4 → 2026.8.18

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.
package/README.md CHANGED
@@ -113,7 +113,7 @@ npm run start:streamableHttp
113
113
  ### Install
114
114
  ```shell
115
115
  npm install -g @modelcontextprotocol/server-everything@latest
116
- ````
116
+ ```
117
117
 
118
118
  ### Run the default (stdio) server
119
119
  ```shell
@@ -54,7 +54,7 @@
54
54
  - `prompts: {}`
55
55
  - `resources: { subscribe: true }`
56
56
  - **Server Instructions**
57
- - Loaded from the docs folder (`server-instructions.md`).
57
+ - Loaded from the docs folder (`instructions.md`).
58
58
  - **Registrations**
59
59
  - Registers **tools** via `registerTools(server)`.
60
60
  - Registers **resources** via `registerResources(server)`.
@@ -85,9 +85,19 @@ src/everything
85
85
  ### `docs/`
86
86
 
87
87
  - `architecture.md`
88
- - This document.
88
+ - Describes the server architecture, including transport layers, session initialization, and primitive registration.
89
+ - `extension.md`
90
+ - Explains how to extend the server with new tools, prompts, resources, or transports.
91
+ - `features.md`
92
+ - A comprehensive reference listing all implemented prompts, resources, tools, and protocol behaviors.
93
+ - `how-it-works.md`
94
+ - Explains how SSE and Streamable HTTP transports are set up and how sessions are managed.
89
95
  - `instructions.md`
90
96
  - Human‑readable instructions intended to be passed to the client/LLM as guidance on server use. Loaded by the server at startup and returned in the initialize exchange.
97
+ - `startup.md`
98
+ - Describes the server startup sequence, environment checks, and initialization.
99
+ - `structure.md`
100
+ - This document.
91
101
 
92
102
  ### `prompts/`
93
103
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modelcontextprotocol/server-everything",
3
- "version": "2026.7.4",
3
+ "version": "2026.8.18",
4
4
  "description": "MCP server that exercises all the features of the MCP protocol",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "mcpName": "io.github.modelcontextprotocol/server-everything",
@@ -30,7 +30,7 @@
30
30
  "test": "vitest run --coverage"
31
31
  },
32
32
  "dependencies": {
33
- "@modelcontextprotocol/sdk": "^1.29.0",
33
+ "@modelcontextprotocol/sdk": "^1.30.0",
34
34
  "cors": "^2.8.5",
35
35
  "express": "^5.2.1",
36
36
  "jszip": "^3.10.1",
@@ -41,7 +41,7 @@
41
41
  "@types/express": "^5.0.6",
42
42
  "@vitest/coverage-v8": "^4.1.8",
43
43
  "prettier": "^2.8.8",
44
- "shx": "^0.3.4",
44
+ "shx": "^0.4.0",
45
45
  "typescript": "^5.6.2",
46
46
  "vitest": "^4.1.8"
47
47
  }