├── .editorconfig ├── .github ├── pull_request_template.md └── workflows │ ├── generate-upload-dxt-cypher.yml │ ├── github-registry-aura-manager.yml │ ├── github-registry-cypher.yml │ ├── github-registry-data-modeling.yml │ ├── github-registry-memory.yml │ ├── pr-mcp-neo4j-cloud-aura-api.yml │ ├── pr-mcp-neo4j-cypher.yml │ ├── pr-mcp-neo4j-data-modeling.yml │ ├── pr-mcp-neo4j-memory.yml │ ├── publish-aura-manager.yml │ ├── publish-cypher.yml │ ├── publish-data-modeling.yml │ └── publish-memory.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .verdaccio └── config.yml ├── .vscode └── extensions.json ├── LICENSE.txt ├── README-Cloud.md ├── README.md ├── SECURITY.md ├── gemini-extension.json ├── gemini-extension └── GEMINI.md ├── glama.json └── servers ├── mcp-neo4j-cloud-aura-api ├── .dockerignore ├── CHANGELOG.md ├── Dockerfile ├── Makefile ├── README.md ├── docs │ └── images │ │ ├── mcp-aura-create-instance.png │ │ ├── mcp-aura-find-by-name.png │ │ ├── mcp-aura-find-paused.png │ │ ├── mcp-aura-list-resume.png │ │ └── mcp-aura-tenant-overview.png ├── pyproject.toml ├── server.json ├── src │ └── mcp_neo4j_aura_manager │ │ ├── __init__.py │ │ ├── aura_api_client.py │ │ ├── aura_manager.py │ │ ├── server.py │ │ └── utils.py ├── test.sh ├── tests │ ├── integration │ │ ├── conftest.py │ │ ├── test_aura_IT.py │ │ └── test_http_transport_IT.py │ └── unit │ │ ├── test_aura_manager.py │ │ ├── test_server.py │ │ └── test_utils.py └── uv.lock ├── mcp-neo4j-cypher ├── .dockerignore ├── .flake8 ├── .python-version ├── CHANGELOG.md ├── Dockerfile ├── Makefile ├── README.md ├── assets │ └── images │ │ └── text2cypher-process.png ├── docker-compose.yml ├── inspector.sh ├── manifest.json ├── pyproject.toml ├── pyrightconfig.json ├── server.json ├── src │ └── mcp_neo4j_cypher │ │ ├── __init__.py │ │ ├── server.py │ │ └── utils.py ├── test.sh ├── tests │ ├── integration │ │ ├── conftest.py │ │ ├── test_http_transport_IT.py │ │ ├── test_server_tools_IT.py │ │ ├── test_sse_transport_IT.py │ │ └── test_stdio_transport_IT.py │ └── unit │ │ └── test_utils.py └── uv.lock ├── mcp-neo4j-data-modeling ├── .dockerignore ├── .flake8 ├── .python-version ├── CHANGELOG.md ├── Dockerfile ├── Makefile ├── README.md ├── assets │ └── images │ │ └── data-modeling-process-v2.png ├── pyproject.toml ├── pyrightconfig.json ├── server.json ├── src │ └── mcp_neo4j_data_modeling │ │ ├── __init__.py │ │ ├── data_model.py │ │ ├── models.py │ │ ├── server.py │ │ ├── static.py │ │ └── utils.py ├── tests │ ├── integration │ │ ├── conftest.py │ │ ├── test_http_transport_IT.py │ │ ├── test_sse_transport_IT.py │ │ └── test_stdio_transport_IT.py │ ├── resources │ │ └── blueplaques.ttl │ └── unit │ │ ├── conftest.py │ │ ├── test_data_model.py │ │ ├── test_example_data_models.py │ │ ├── test_neo4j_graphrag.py │ │ ├── test_pydantic_string_conversion.py │ │ ├── test_pydantic_validation.py │ │ ├── test_server.py │ │ └── test_utils.py └── uv.lock └── mcp-neo4j-memory ├── .dockerignore ├── CHANGELOG.md ├── Dockerfile ├── Makefile ├── README.md ├── docs └── images │ ├── employee_create_entities_and_relations.png │ └── employee_graph.png ├── pyproject.toml ├── server.json ├── src └── mcp_neo4j_memory │ ├── __init__.py │ ├── neo4j_memory.py │ ├── server.py │ └── utils.py ├── test.sh ├── tests ├── integration │ ├── conftest.py │ ├── test_http_transport_IT.py │ ├── test_neo4j_memory_IT.py │ ├── test_sse_transport_IT.py │ └── test_stdio_transport_IT.py └── unit │ ├── test_neo4j_memory.py │ ├── test_server.py │ └── test_utils.py └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/generate-upload-dxt-cypher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/generate-upload-dxt-cypher.yml -------------------------------------------------------------------------------- /.github/workflows/github-registry-aura-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/github-registry-aura-manager.yml -------------------------------------------------------------------------------- /.github/workflows/github-registry-cypher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/github-registry-cypher.yml -------------------------------------------------------------------------------- /.github/workflows/github-registry-data-modeling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/github-registry-data-modeling.yml -------------------------------------------------------------------------------- /.github/workflows/github-registry-memory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/github-registry-memory.yml -------------------------------------------------------------------------------- /.github/workflows/pr-mcp-neo4j-cloud-aura-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/pr-mcp-neo4j-cloud-aura-api.yml -------------------------------------------------------------------------------- /.github/workflows/pr-mcp-neo4j-cypher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/pr-mcp-neo4j-cypher.yml -------------------------------------------------------------------------------- /.github/workflows/pr-mcp-neo4j-data-modeling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/pr-mcp-neo4j-data-modeling.yml -------------------------------------------------------------------------------- /.github/workflows/pr-mcp-neo4j-memory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/pr-mcp-neo4j-memory.yml -------------------------------------------------------------------------------- /.github/workflows/publish-aura-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/publish-aura-manager.yml -------------------------------------------------------------------------------- /.github/workflows/publish-cypher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/publish-cypher.yml -------------------------------------------------------------------------------- /.github/workflows/publish-data-modeling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/publish-data-modeling.yml -------------------------------------------------------------------------------- /.github/workflows/publish-memory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.github/workflows/publish-memory.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.verdaccio/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.verdaccio/config.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-Cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/README-Cloud.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/SECURITY.md -------------------------------------------------------------------------------- /gemini-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/gemini-extension.json -------------------------------------------------------------------------------- /gemini-extension/GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/gemini-extension/GEMINI.md -------------------------------------------------------------------------------- /glama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/glama.json -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/.dockerignore -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/CHANGELOG.md -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/Dockerfile -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/Makefile -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/README.md -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-create-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-create-instance.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-find-by-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-find-by-name.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-find-paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-find-paused.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-list-resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-list-resume.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-tenant-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/docs/images/mcp-aura-tenant-overview.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/pyproject.toml -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/server.json -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/__init__.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/aura_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/aura_api_client.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/aura_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/aura_manager.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/server.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/src/mcp_neo4j_aura_manager/utils.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/test.sh -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/tests/integration/conftest.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/tests/integration/test_aura_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/tests/integration/test_aura_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/tests/integration/test_http_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/tests/integration/test_http_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/tests/unit/test_aura_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/tests/unit/test_aura_manager.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/tests/unit/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/tests/unit/test_server.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/tests/unit/test_utils.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cloud-aura-api/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cloud-aura-api/uv.lock -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/.dockerignore -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/.flake8 -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/.python-version: -------------------------------------------------------------------------------- 1 | 3.12.7 2 | -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/CHANGELOG.md -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/Dockerfile -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/Makefile -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/README.md -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/assets/images/text2cypher-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/assets/images/text2cypher-process.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/docker-compose.yml -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/inspector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/inspector.sh -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/manifest.json -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/pyproject.toml -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/pyrightconfig.json -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/server.json -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/src/mcp_neo4j_cypher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/src/mcp_neo4j_cypher/__init__.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/src/mcp_neo4j_cypher/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/src/mcp_neo4j_cypher/server.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/src/mcp_neo4j_cypher/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/src/mcp_neo4j_cypher/utils.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/test.sh -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/tests/integration/conftest.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/tests/integration/test_http_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/tests/integration/test_http_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/tests/integration/test_server_tools_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/tests/integration/test_server_tools_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/tests/integration/test_sse_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/tests/integration/test_sse_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/tests/integration/test_stdio_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/tests/integration/test_stdio_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/tests/unit/test_utils.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-cypher/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-cypher/uv.lock -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/.dockerignore -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/.flake8 -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/.python-version: -------------------------------------------------------------------------------- 1 | 3.12.7 2 | -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/CHANGELOG.md -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/Dockerfile -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/Makefile -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/README.md -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/assets/images/data-modeling-process-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/assets/images/data-modeling-process-v2.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/pyproject.toml -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/pyrightconfig.json -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/server.json -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/__init__.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/data_model.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/models.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/server.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/static.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/src/mcp_neo4j_data_modeling/utils.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/integration/conftest.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/integration/test_http_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/integration/test_http_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/integration/test_sse_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/integration/test_sse_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/integration/test_stdio_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/integration/test_stdio_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/resources/blueplaques.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/resources/blueplaques.ttl -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/unit/conftest.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/unit/test_data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/unit/test_data_model.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/unit/test_example_data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/unit/test_example_data_models.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/unit/test_neo4j_graphrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/unit/test_neo4j_graphrag.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/unit/test_pydantic_string_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/unit/test_pydantic_string_conversion.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/unit/test_pydantic_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/unit/test_pydantic_validation.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/unit/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/unit/test_server.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/tests/unit/test_utils.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-data-modeling/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-data-modeling/uv.lock -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/.dockerignore -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/CHANGELOG.md -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/Dockerfile -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/Makefile -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/README.md -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/docs/images/employee_create_entities_and_relations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/docs/images/employee_create_entities_and_relations.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/docs/images/employee_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/docs/images/employee_graph.png -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/pyproject.toml -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/server.json -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/src/mcp_neo4j_memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/src/mcp_neo4j_memory/__init__.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/src/mcp_neo4j_memory/neo4j_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/src/mcp_neo4j_memory/neo4j_memory.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/src/mcp_neo4j_memory/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/src/mcp_neo4j_memory/server.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/src/mcp_neo4j_memory/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/src/mcp_neo4j_memory/utils.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/test.sh -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/tests/integration/conftest.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/tests/integration/test_http_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/tests/integration/test_http_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/tests/integration/test_neo4j_memory_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/tests/integration/test_neo4j_memory_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/tests/integration/test_sse_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/tests/integration/test_sse_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/tests/integration/test_stdio_transport_IT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/tests/integration/test_stdio_transport_IT.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/tests/unit/test_neo4j_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/tests/unit/test_neo4j_memory.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/tests/unit/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/tests/unit/test_server.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/tests/unit/test_utils.py -------------------------------------------------------------------------------- /servers/mcp-neo4j-memory/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/mcp-neo4j/HEAD/servers/mcp-neo4j-memory/uv.lock --------------------------------------------------------------------------------