Manages personal knowledge using a local Neo4j container, with data imported from JSON files.
JSONファイルを作成
persons.json, domains.json, observations.json, relations.json を neo4j-container/import/
ディレクトリに配置します。
Neo4jコンテナを起動
cd neo4j-container
docker compose up -d
コンテナに入る
docker exec -it neo4j-container-neo4j-1 /bin/bash
Cypher Shellでファイルを実行
cypher-shell -u neo4j -p mypassword
登録結果の確認
cypher-shell -u neo4j -p mypassword "MATCH (n) RETURN n LIMIT 50;"
# PowerShellの場合
# (コンテナ名は docker ps で確認)
docker exec -it neo4j-container-neo4j-1 /bin/bash
cat /import/persons.cypher | cypher-shell -u neo4j -p mypassword
cat /import/domains.cypher | cypher-shell -u neo4j -p mypassword
cat /import/relations.cypher | cypher-shell -u neo4j -p mypassword
cat /import/observations.cypher | cypher-shell -u neo4j -p mypassword
※<パスワード>はneo4jのパスワードに置き換えてください。
cypher-shell -u neo4j -p mypassword "MATCH (n) RETURN n LIMIT 50;"
まず、Pythonのmcp-neo4j-memoryモジュールをインストールしておきます。
pip install mcp-neo4j-memory
claude_desktop_config.json
"mcpServers": {
"neo4j": {
"command": "uvx",
"args": [
"mcp-neo4j-memory@0.1.4",
"--db-url",
"neo4j+s://xxxx.databases.neo4j.io",
"--username",
"<your-username>",
"--password",
"<your-password>"
]
}
}
A read-only MCP server for Reckon, enabling LLMs to query live data using the CData JDBC Driver.
Access Crunchbase data for business information and insights. Requires a Crunchbase API key.
A read-only MCP server for querying live Google Directory data using the CData JDBC Driver.
Access the OSV (Open Source Vulnerabilities) database for vulnerability information. Query vulnerabilities by package version or commit, batch query multiple packages, and get detailed vulnerability information by ID.
A server that provides tools to interact with an Oracle database.
Inspect database schemas and execute queries on Google BigQuery.
Interact with Google BigQuery databases using natural language queries and schema exploration.
Access real-time stock prices, company information, and financial data from Yahoo Finance.
A read-only MCP server for querying live Acumatica data using the CData JDBC Driver.
Integrates with Supabase to allow AI assistants to access and manage store data.