{
  "info": {
    "name": "Neo4J — mcp.ai",
    "description": "REST API for the Neo4J MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/neo4j",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "neo4j_aggregate_directors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/aggregate/directors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "aggregate",
            "directors"
          ]
        },
        "description": "Executes a directorsAggregate GraphQL query to count directors in Neo4j. Use when you need to get the total count of director records in the database. The GraphQL query returns the count of all direct",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"instance_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_create_instance_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/instance/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "instance",
            "beta"
          ]
        },
        "description": "Creates a new Neo4j Aura instance with the specified configuration. Use this action when you need to provision a new Neo4j Aura database instance. The operation is asynchronous - the API returns 202 A",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"memory\": \"\",\n  \"region\": \"\",\n  \"storage\": \"\",\n  \"version\": \"\",\n  \"tenant_id\": \"\",\n  \"cloud_provider\": \"\",\n  \"vector_optimized\": false,\n  \"source_instance_id\": \"\",\n  \"source_snapshot_id\": \"\",\n  \"graph_analytics_plugin\": false,\n  \"customer_managed_key_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_create_snapshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/snapshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "snapshot"
          ]
        },
        "description": "Create an on-demand snapshot of a Neo4j Aura instance. Triggers asynchronous backup creation and returns a snapshot ID that can be used to monitor progress. Use this action when you need to manually c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"instance_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_estimate_gds_session_size",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/estimate/gds/session/size",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "estimate",
            "gds",
            "session",
            "size"
          ]
        },
        "description": "Estimate the size of a new GDS (Graph Data Science) session based on node/relationship counts and algorithm categories. Use this action when you need to determine the appropriate GDS session size befo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"node_count\": 0,\n  \"node_label_count\": 0,\n  \"relationship_count\": 0,\n  \"node_property_count\": 0,\n  \"algorithm_categories\": \"\",\n  \"relationship_property_count\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_get_instance_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/instance/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "instance",
            "beta"
          ]
        },
        "description": "Retrieves details for a specific Neo4j Aura instance using its unique instance ID. Returns comprehensive information including instance name, status, cloud provider, region, memory allocation, connect",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"instance_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_get_organization_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "user"
          ]
        },
        "description": "Retrieves details of a specific user in a Neo4j Aura organization. Returns user information including email, organization roles, MFA status, last activity, and project-level access permissions. Use th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_get_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project"
          ]
        },
        "description": "Retrieve details of a specific Neo4j Aura project (tenant). Returns project information including its ID, name, and available instance configurations with regions, types, memory, storage options, and ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tenant_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_get_project_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "beta"
          ]
        },
        "description": "Retrieve details of a specific Neo4j Aura project (tenant) using the v1beta5 API. Returns project information including its ID, name, and available instance configurations with regions, types, memory,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tenant_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_get_snapshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/snapshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "snapshot"
          ]
        },
        "description": "Retrieves details of a specific snapshot for a Neo4j Aura instance. Returns the snapshot profile, current status, and creation timestamp. Use this action when you need to check the status or details o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"instance_id\": \"\",\n  \"snapshot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_list_agents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/agents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "agents"
          ]
        },
        "description": "List all agents belonging to a specific Neo4j Aura project. Returns agent information including ID, name, description, database ID, privacy settings, endpoint links, MCP status, and attached tools. Us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_list_gds_sessions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/gds/sessions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "gds",
            "sessions"
          ]
        },
        "description": "List all Graph Data Science (GDS) sessions for the authenticated Neo4j Aura account. Returns a summary of each GDS session including status, memory allocation, host information, and expiry date. Use o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tenant_id\": \"\",\n  \"instance_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_list_instances_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/instances/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "instances",
            "beta"
          ]
        },
        "description": "Returns a list of Neo4j Aura instances. Use when you need to retrieve all available Neo4j Aura instances in your account, optionally filtered by tenant.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tenant_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_list_ip_filters",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/ip/filters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "ip",
            "filters"
          ]
        },
        "description": "Returns a list of IP filters configured for a Neo4j Aura organization. Use this action when you need to retrieve all IP filters to check which CIDR blocks are allowed or blocked, or to determine which",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_list_project_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "users"
          ]
        },
        "description": "List all users in a specific Neo4j Aura project. Returns user information including email, user ID, and project roles for each user. Use this action when you need to retrieve all users associated with",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "List all Aura projects (tenants) available to the authenticated user. Returns a summary of each project including its unique ID and name. Use this action when you need to retrieve all Aura projects to",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_list_snapshots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/snapshots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "snapshots"
          ]
        },
        "description": "Lists available snapshots for a Neo4j Aura instance. Returns both scheduled and ad-hoc snapshots with their status and creation timestamps. Use when you need to retrieve information about available da",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"instance_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_pause_instance_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pause/instance/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pause",
            "instance",
            "beta"
          ]
        },
        "description": "Pauses a Neo4j Aura instance. Use when you need to temporarily stop an instance to reduce costs or perform maintenance. The instance can be resumed later using the ResumeInstance action. This action i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"instance_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_restore_snapshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/snapshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "snapshot"
          ]
        },
        "description": "Restore a Neo4j Aura instance from a snapshot. Replaces all current data with the snapshot data. This action is irreversible — all data since the snapshot was taken will be permanently lost. Use this ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"instance_id\": \"\",\n  \"snapshot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_update_instance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/instance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "instance"
          ]
        },
        "description": "Updates a Neo4j Aura instance configuration. Allows modifying instance properties such as name, memory allocation, storage size, vector optimization, and graph analytics plugin. Use this action when y",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"memory\": \"\",\n  \"storage\": \"\",\n  \"instance_id\": \"\",\n  \"vector_optimized\": false,\n  \"graph_analytics_plugin\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_update_instance_beta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/instance/beta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "instance",
            "beta"
          ]
        },
        "description": "Edits the configuration of a Neo4j Aura instance. Allows updating the instance name, memory allocation, storage size, and plugin configurations. Use this action when you need to modify an existing Neo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"memory\": \"\",\n  \"storage\": \"\",\n  \"instance_id\": \"\",\n  \"vector_optimized\": false,\n  \"graph_analytics_plugin\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "neo4j_update_ip_filter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/ip/filter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "ip",
            "filter"
          ]
        },
        "description": "Updates an existing IP filter for a Neo4j Aura organization. Use this action when you need to modify an existing IP filter's settings, such as updating its name, description, allow list entries, or en",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"allow_list\": \"\",\n  \"description\": \"\",\n  \"ip_filter_id\": \"\",\n  \"organization_id\": \"\",\n  \"filtering_disabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}