This project provides a Model Context Protocol (MCP) server for interacting with the Neo4j Sandbox API. It allows language models or other MCP clients to easily launch, list, query, and perform other actions on Neo4j Sandbox instances using a standardized tool interface.
The server is built as a FastAPI application and uses the FastAPI-MCP library to expose its endpoints as MCP tools. Authentication with the Sandbox API is handled via Auth0, and the necessary Auth0 credentials must be configured through environment variables.
The server requires the following environment variables to be set for Auth0 authentication, which is used to secure the MCP tools and interact with the Sandbox API on behalf of the user:
AUTH0_DOMAIN: Your Auth0 tenant domain (e.g.,your-tenant.auth0.com).AUTH0_AUDIENCE: The Audience for your Auth0 API (e.g.,https://your-tenant.auth0.com/api/v2/).AUTH0_CLIENT_ID: The Client ID of your Auth0 Application.AUTH0_CLIENT_SECRET: The Client Secret of your Auth0 Application.SANDBOX_API_KEY: Your Neo4j Sandbox API key. This is used by the underlyingneo4j-sandbox-api-client.
You can set these variables directly in your environment or place them in a .env file in the project root.
-
Install dependencies: It's recommended to use a virtual environment.
python -m venv .venv source .venv/bin/activate # On Windows use `.venv\\Scripts\\activate` pip install -r requirements.txt # Or using uv # uv pip install -r requirements.txt
-
Set environment variables: Ensure the
.envfile is present in themcp-serverdirectory and populated with your Auth0 and Sandbox API credentials as described above. -
Run the FastAPI application: The server can be started using Uvicorn:
uvicorn src.sandbox_api_mcp_server.server:run --factory --host 0.0.0.0 --port 9100
Alternatively, if you have
srcin yourPYTHONPATHor are in themcp-serverdirectory:python src/sandbox_api_mcp_server/server.py
This will typically start the server on
http://0.0.0.0:9100. The MCP endpoint will be available athttp://0.0.0.0:9100/sse(as configured inserver.py).
To use this MCP server with an MCP client, you need to configure the client to connect to the running FastAPI server. Given the OAuth2 flow used for authentication, it is highly recommended to use mcp-remote to bridge the connection. mcp-remote will handle the browser-based login and token passing to the MCP server.
If you don't have mcp-remote (part of the mcp-cli package) installed globally, you can use npx to run it directly or install it:
npm install -g mcp-remoteEnsure your FastAPI MCP server is running locally (e.g., on http://localhost:9100 with the MCP endpoint at http://localhost:9100/sse):
python src/sandbox_api_mcp_server/server.pyOr using uvicorn directly:
uvicorn src.sandbox_api_mcp_server.server:run --factory --host 0.0.0.0 --port 9100In a new terminal, start mcp-remote, pointing it to your local MCP server's /sse endpoint and choosing a local port for mcp-remote to listen on (e.g., 8080):
# If mcp-cli is installed globally
mcp-remote http://localhost:9100/sse 8080
# Or using npx
npx -y mcp-remote http://localhost:9100/sse 8080mcp-remote will now listen on localhost:8080 and proxy requests to your actual MCP server, handling the OAuth flow.
-
Locate Claude Desktop Configuration:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.jsonIf the file doesn't exist, create it.
- macOS:
-
Configure the MCP Server in Claude Desktop: Edit
claude_desktop_config.jsonto point to the local port wheremcp-remoteis listening (e.g.,8080).{ "mcpServers": { "neo4j-sandbox-mcp-via-remote": { "command": "npx", "args": [ "-y", "mcp-remote", "http://localhost:9100/sse", "8080" ] } } }Note: With
mcp-remotehandling the connection to your actual server and its authentication, the Claude Desktop configuration becomes simpler, primarily needing to know wheremcp-remoteis accessible. -
Restart Claude Desktop: Quit and reopen Claude Desktop to load the new configuration.
-
Authenticate via Browser: When you first try to use a tool,
mcp-remoteshould open a browser window for you to complete the Auth0 login. After successful authentication, Claude Desktop will be able to use the tools. -
Verify Connection: Look for the MCP tools icon in Claude Desktop to confirm connection.
The following tools are exposed, derived from the FastAPI application's endpoints. The operation_id of each FastAPI route becomes the tool name.
- Description: List all running sandbox instances for the authenticated user.
- Input: None
- Output:
Dict(JSON object containing a list of sandboxes)
- Description: Starts a new sandbox instance for a specified use case.
- Input:
usecase(str): The name of the use case for the sandbox (e.g., 'movies', 'blank').
- Output:
Dict(JSON object representing the newly started sandbox)
- Description: Stops/terminates a specific sandbox instance.
- Input:
sandbox_hash_key(str): The unique hash key identifying the sandbox.
- Output:
Dict(Typically an empty JSON object{}on success, or an error object)
- Description: Extends the lifetime of a sandbox or all sandboxes for the user.
- Input:
sandbox_hash_key(Optional[str]): Specific sandbox to extend. If None, all user's sandboxes are extended.
- Output:
Dict(JSON object with status of the extension)
- Description: Gets connection details for a specific sandbox.
- Input:
sandbox_hash_key(str, path parameter): The unique hash key identifying the sandbox.verify_connect(Optional[bool], query parameter, default:False): If true, verifies connection to the sandbox.
- Output:
Dict(JSON object containing connection details for the sandbox)
- Description: Requests a backup for a specific sandbox.
- Input:
sandbox_hash_key(str, path parameter): The unique hash key identifying the sandbox.
- Output:
Dict(JSON object containing details of the backup request, possibly including a result ID)
- Description: Retrieves the result of a specific backup task.
- Input:
result_id(str, path parameter): The ID of the backup/upload task result.
- Output:
Dict(JSON object containing the status and details of the backup task)
- Description: Lists available backups for a specific sandbox.
- Input:
sandbox_hash_key(str, path parameter): The unique hash key identifying the sandbox.
- Output:
Dict(JSON object containing a list of available backups)
- Description: Gets a download URL for a specific sandbox backup file.
- Input:
sandbox_hash_key(str, path parameter): The unique hash key identifying the sandbox.key(str, in request body): The S3 key of the backup file to download.
- Output:
Dict(JSON object containing the download URL)
- Description: Uploads a sandbox backup to an Aura instance.
- Input:
sandbox_hash_key(str): The unique hash key identifying the sandbox backup to upload.aura_uri(str): The Aura instance URI (e.g., neo4j+s://xxxx.databases.neo4j.io).aura_password(str): Password for the Aura instance.aura_username(Optional[str], default:'neo4j'): Username for the Aura instance.
- Output:
Dict(JSON object containing details of the upload task, possibly including a result ID)
- Description: Retrieves the result of a specific Aura upload task.
- Input:
result_id(str, path parameter): The ID of the Aura upload task result.
- Output:
Dict(JSON object containing the status and details of the Aura upload task)
- Description: Retrieves the schema for a specific sandbox.
- Input:
hash_key(str, query parameter): The hash key of the sandbox.
- Output:
Dict(JSON object containing the schema information)
- Description: Executes a read-only Cypher query on a sandbox.
- Input:
hash_key(str): The hash key of the sandbox to query.query(str): The Read Cypher query to execute.params(Optional[Dict[str, Any]]): Optional parameters for the Cypher query.
- Output:
Dict(JSON object containing the query results)
- Description: Executes a write Cypher query on a sandbox.
- Input:
hash_key(str): The hash key of the sandbox to query.query(str): The Write Cypher query to execute.params(Optional[Dict[str, Any]]): Optional parameters for the Cypher query.
- Output:
Dict(JSON object, typically empty or with summary information)
- The main FastAPI application logic is in
src/sandbox_api_mcp_server/server.py. - API routes (which become MCP tools) are defined in
src/sandbox_api_mcp_server/sandbox/routes.py. - Request/response models are primarily in
src/sandbox_api_mcp_server/sandbox/models.pyandsrc/sandbox_api_mcp_server/models.py. - Authentication logic is in
src/sandbox_api_mcp_server/auth.py. - The project uses
uvfor dependency management (seeuv.lock) andpipfor installation (requirements.txt). - Consider using
hatchorpoetryfor more robust dependency management and packaging if distributing this server. (Thepyproject.tomlsuggestshatchmight be intended for future use).