@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.
- package/dist/everything.js +0 -12
- package/package.json +1 -1
package/dist/everything.js
CHANGED
@@ -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