Skip to main content
Glama

Neo4j Agent Memory MCP Server

by knowall-ai
smithery.yaml1.24 kB
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: [] properties: neo4jUri: type: string default: bolt://localhost:7687 description: The URI for the Neo4j database. neo4jUsername: type: string default: neo4j description: The username for the Neo4j database. neo4jPassword: type: string default: "" description: The password for the Neo4j database. neo4jDatabase: type: string default: neo4j description: The database name for Neo4j Enterprise (optional). commandFunction: # A function that produces the CLI command to start the MCP on stdio. |- config => { const env = {}; if (config.neo4jUri) env.NEO4J_URI = config.neo4jUri; if (config.neo4jUsername) env.NEO4J_USERNAME = config.neo4jUsername; if (config.neo4jPassword) env.NEO4J_PASSWORD = config.neo4jPassword; if (config.neo4jDatabase) env.NEO4J_DATABASE = config.neo4jDatabase; return {command: 'node', args: ['build/index.js'], env}; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/knowall-ai/mcp-neo4j-agent-memory'

If you have feedback or need assistance with the MCP directory API, please join our Discord server