- bump TS SDK to 1.18.0
* In src/everything/stdio.ts
- remove logging related imports
- remove custom log-level handling, now handled automatically by the SDK
* In src/everything/everything.ts
- remove console.log of sessionId
- Added MCPProxy entry in correct alphabetical position (between Multiplayer and NanoVMs)
- Open-source local app enabling access to multiple MCP servers and thousands of tools
- Features intelligent discovery via MCP protocol and quarantine protection
- Runs servers in isolated environments for enhanced security
- Expand description to include full range of Gcore platform services
- Add CDN, GPU Cloud & AI Inference, Video Streaming, WAAP services
- Change from "Cloud API" to "platform services" for accuracy
- Maintain unified access approach and cloud resources mention
- Added Gcore MCP server entry in alphabetical order
- Provides unified configuration for Gcore Cloud API interactions
- Supports cloud resource management including instances, networks, and GPU clusters
- Updated name from "HyperExecute MCP Server" to "LambdaTest MCP Server" as part of unification.
- Adjusted row order in README to follow the repo’s name sequence convention.
- No functional/code changes, only documentation alignment
- Add Modao Proto MCP to the third-party servers list
- AI-powered HTML prototype generation server
- Converts natural language descriptions into complete HTML code
- Maintains alphabetical order in the list
- Adds FF3 Format Preserving Encryption MCP server
- Demonstrates authentication patterns for secure data protection
- Positioned alphabetically in community servers section
- add .idea/ for Jetbrains IDEs
* in everything.ts
- remove import of SetLevelRequestSchema
- remove logLevel var
- add sessionId var
- in startNotificationIntervals function
- add optional sid argument
- set sessionId to sid
- define messages to be sent, adding sessionId if present
- remove setRequestHandler call for SetLevelRequestSchema
- replace server.notification calls that sent "notifications/message" objects with calls to server.sendLoggingMessage, passing just the parameters and sessionId.
* In package.json & package-lock.json
- bump TS SDK version to 1.17.5
* In sse.ts, pass transport.sessionId to startNotificationIntervals call
* In stdio.ts
- destructure startNotificationIntervals from createServer call
- implement custom logging request handler and server.sendLoggingMessage implementation, as a
workaround for the fact that the SDK's automatic log level handling currently only tracks requested log level by session id. This will be fixed in a followup PR for the SDK
- call the startNotificationIntervals function after connecting the transport to the server
* In streamableHttp.ts
- destructure startNotificationIntervals from createServer call
- call startNotificationIntervals passing the transport.sessionId after connecting the transport to the server