We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cxt9/neo4j-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•468 B
"""
Neo4j MCP - Model Context Protocol server and client for Neo4j database access.
This package provides both MCP server and client implementations for connecting
LLMs to Neo4j graph databases with read/write capabilities.
"""
__version__ = "0.1.0"
__author__ = "Neo4j MCP Team"
__email__ = "neo4j-mcp@example.com"
from .config import Neo4jConfig
from .connection import Neo4jConnection
__all__ = [
"Neo4jConfig",
"Neo4jConnection",
"__version__",
]