Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions modules/genai-ecosystem/pages/model-context-protocol-mcp.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,37 @@ Cypher Ingest
image::https://dist.neo4j.com/wp-content/uploads/mcp-data-modeling-claude-data-discovery.png[width=400]
image::https://dist.neo4j.com/wp-content/uploads/mcp-data-modeling-claude-data-model-1-viz.png[width=400]

=== MCP-Sandbox

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.

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.

Instance & User Management:
* `start_new_sandbox`: Creates a new sandbox instance for a specific use case.
* `list_sandboxes_for_user`: Lists all active sandboxes for the user.
* `terminate_sandbox`: Deletes a sandbox instance.
* `get_sandbox_connection_details`: Retrieves connection details for a sandbox.
* `extend_sandbox_lifetime`: Extends the lifetime of a sandbox.
* `invite_sandbox_collaborator`: Invites a collaborator to a sandbox.
* `get_user_information`: Retrieves information for the authenticated user.

Data Interaction:
* `get_schema`: Fetches the graph schema from a sandbox.
* `read_query`: Executes a read-only Cypher query.
* `write_query`: Executes a write Cypher query.

Backup & Aura Upload:
* `request_sandbox_backup`: Requests a backup for a sandbox.
* `list_sandbox_backups`: Lists available backups for a sandbox.
* `get_backup_result`: Retrieves the result of a backup task.
* `get_sandbox_backup_download_url`: Gets a download URL for a backup file.
* `upload_sandbox_to_aura`: Uploads a sandbox backup to an Aura instance.
* `get_aura_upload_result`: Retrieves the result of an Aura upload task.

image::https://dist.neo4j.com/wp-content/uploads/mcp-neo4j-sandbox-list-create.png[width=400]
image::https://dist.neo4j.com/wp-content/uploads/mcp-neo4j-sandbox-get-schema.png[width=400]

== Google MCP Toolbox

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.
Expand Down