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
The https://github.com/neo4j-contrib/sandbox-mcp-server[sandbox-mcp-server^] server provides tools for managing https://sandbox.neo4j.com[Neo4j Sandboxes^] instances directly from your development environment. This server simplifies the development workflow by allowing you to programmatically control your sandboxes.
238
+
239
+
A key feature of this MCP server is the ability to not only manage the lifecycle of sandboxes (creating, terminating, extending) but also to directly interact with the data inside them. You can retrieve the database schema and execute both read and write Cypher queries on any of your running sandbox instances. This is particularly useful for rapid prototyping, testing, and data exploration without leaving your IDE.
240
+
241
+
Instance & User Management:
242
+
243
+
* `start_new_sandbox` - Creates a new sandbox instance for a specific use case.
244
+
* `list_sandboxes_for_user` - Lists all active sandboxes for the user.
245
+
* `terminate_sandbox` - Deletes a sandbox instance.
246
+
* `get_sandbox_connection_details` - Retrieves connection details for a sandbox.
247
+
* `extend_sandbox_lifetime` - Extends the lifetime of a sandbox.
248
+
249
+
Data Interaction:
250
+
251
+
* `get_schema` - Fetches the graph schema from a sandbox.
252
+
* `read_query` - Executes a read-only Cypher query.
253
+
* `write_query` - Executes a write Cypher query.
254
+
255
+
Backup & Aura Upload:
256
+
257
+
* `request_sandbox_backup` - Requests a backup for a sandbox.
258
+
* `list_sandbox_backups` - Lists available backups for a sandbox.
259
+
* `get_backup_result` - Retrieves the result of a backup task.
260
+
* `get_sandbox_backup_download_url` - Gets a download URL for a backup file.
261
+
* `upload_sandbox_to_aura` - Uploads a sandbox backup to an Aura instance.
262
+
* `get_aura_upload_result` - Retrieves the result of an Aura upload task.
https://googleapis.github.io/genai-toolbox/getting-started/mcp_quickstart/[Google's MCP Toolbox for Database^] is an https://github.com/googleapis/genai-toolbox[open source tool^] to integrate a variety of databases as sources for agentic systems.
0 commit comments