@modelcontextprotocol/server-everything 2025.7.29 → 2025.8.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/dist/everything.js +0 -12
  2. package/package.json +1 -1
@@ -162,18 +162,6 @@ export const createServer = () => {
162
162
  if (!isMessageIgnored(message.params.level))
163
163
  server.notification(message);
164
164
  }, 20000);
165
- // Set up update interval for stderr messages
166
- stdErrUpdateInterval = setInterval(() => {
167
- const shortTimestamp = new Date().toLocaleTimeString([], {
168
- hour: "2-digit",
169
- minute: "2-digit",
170
- second: "2-digit"
171
- });
172
- server.notification({
173
- method: "notifications/stderr",
174
- params: { content: `${shortTimestamp}: A stderr message` },
175
- });
176
- }, 30000);
177
165
  // Helper method to request sampling from client
178
166
  const requestSampling = async (context, uri, maxTokens = 100) => {
179
167
  const request = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modelcontextprotocol/server-everything",
3
- "version": "2025.7.29",
3
+ "version": "2025.8.4",
4
4
  "description": "MCP server that exercises all the features of the MCP protocol",
5
5
  "license": "MIT",
6
6
  "author": "Anthropic, PBC (https://anthropic.com)",