You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This removes all tool schemes except for "code mode" tools. Specifically, this removes "all tools" and "dynamic tools" schemes. Additionally, this removes support for resource filtering, tags, jq filtering, and compatibility controls in MCP servers, as they are no longer necessary when using code mode.
# Migration
To migrate, simply modify the command used to invoke the MCP server. Currently, the only supported tool scheme is code mode. Now, starting the server with just `node /path/to/mcp/server` or `npx package-name` will invoke code tools: changing your command to one of these is likely all you will need to do.
Specifically, you must remove all flags including things like --resources, --tags, --client, --tools=dynamic, etc from your invocation command. The only supported flags are now `--port`, `--transport`, `--socket`, and `--tools=docs` (specifically for "docs"). These are also the only options available for http servers.
migration-effort: small
The following tools are available in this MCP server.
245
-
246
-
### Resource `connections`:
247
-
248
-
-`list_connections` (`read`): Get accounts the user has connected
249
-
250
-
### Resource `integrations`:
251
-
252
-
-`list_integrations` (`read`): List all available integrations
253
-
-`connect_integration` (`read`): Get a signed url to connect to a given integration. Use the `list_integrations` tool to find the correct `integration_id` for the required provider.
254
-
255
-
### Resource `memories`:
256
-
257
-
-`update_memory` (`write`): This tool lets you update memory in Hyperspell.
258
-
-`add_memory` (`write`): This tool lets you add text, markdown, or JSON to the Hyperspell index so it can be searched later. It will return the `source` and `resource_id` that can be used to later retrieve the processed memory.
259
-
-`get_memory` (`read`): This tool lets you retrieve a memory that has been previously indexed.
260
-
-`search` (`write`): Search all memories indexed by Hyperspell. Set 'answer' to true to directly answer the query, or to 'false' to simply get all memories related to the query.
261
-
-`upload_file` (`write`): This tool lets you upload a file to the Hyperspell index. It will return the `source` and `resource_id` that can be used to later retrieve the processed memory.
262
-
263
-
### Resource `auth`:
264
-
265
-
-`user_info` (`read`): Get basic info about the current user, including which integrations are currently enabled and which ones are available.
0 commit comments