FalkorDB MCP Server
OfficialFalkorDB MCP サーバー
FalkorDB 用のモデル コンテキスト プロトコル (MCP) サーバー。AI モデルがグラフ データベースをクエリして対話できるようにします。
概要
このプロジェクトは、モデルコンテキストプロトコル(MCP)仕様に準拠したサーバーを実装し、AIモデルをFalkorDBグラフデータベースに接続します。このサーバーは、MCPリクエストをFalkorDBにルーティングし、MCP標準に従ってレスポンスをフォーマットします。
Related MCP server: W3 MCP FalkorDB Server
前提条件
Node.js (v16以降)
npmまたはyarn
FalkorDB インスタンス (ローカルまたはリモートで実行可能)
インストール
このリポジトリをクローンします:
git clone https://github.com/falkordb/falkordb-mcpserver.git cd falkordb-mcpserver依存関係をインストールします:
npm installサンプル環境ファイルをコピーして設定します。
cp .env.example .env設定の詳細に合わせて
.envを編集します。
構成
構成は、 .envファイル内の環境変数を通じて管理されます。
PORT: サーバーポート(デフォルト: 3000)NODE_ENV: 環境(開発、本番)FALKORDB_HOST: FalkorDB ホスト (デフォルト: localhost)FALKORDB_PORT: FalkorDB ポート (デフォルト: 6379)FALKORDB_USERNAME: FalkorDB 認証のユーザー名(必要な場合)FALKORDB_PASSWORD: FalkorDB 認証用のパスワード(必要な場合)MCP_API_KEY: MCPリクエストを認証するためのAPIキー
使用法
発達
ホットリロードを使用して開発サーバーを起動します。
npm run dev生産
サーバーをビルドして起動します。
npm run build
npm startAPIエンドポイント
GET /api/mcp/metadata: FalkorDB インスタンスと利用可能な機能に関するメタデータを取得します。POST /api/mcp/context: FalkorDBに対してクエリを実行するGET /api/mcp/health: サーバーの健全性をチェックするGET /api/mcp/graphs: グラフのリストを返します
MCP構成
このサーバーを MCP クライアントで使用するには、MCP 構成に追加します。
{
"mcpServers": {
"falkordb": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-p", "3000:3000",
"--env-file", ".env",
"falkordb-mcpserver",
"falkordb://host.docker.internal:6379"
]
}
}
}クライアント側の構成の場合:
{
"defaultServer": "falkordb",
"servers": {
"falkordb": {
"url": "http://localhost:3000/api/mcp",
"apiKey": "your_api_key_here"
}
}
}貢献
貢献を歓迎します!お気軽にプルリクエストを送信してください。
ライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceA Model Context Protocol server implementation that enables LLMs to interact with NebulaGraph database for graph exploration, supporting schema understanding, queries, and graph algorithms.528Apache 2.0
- AlicenseAqualityCmaintenanceEnables graph database operations on FalkorDB via MCP, allowing Cypher queries, node retrieval, and graph listing.31MIT

grafeo-mcpofficial
AlicenseAqualityBmaintenanceEnables AI agents to interact with an embedded graph database (GrafeoDB) via the Model Context Protocol, providing tools for graph CRUD, GQL queries, full-text and vector search, and graph algorithms.234Apache 2.0
tigergraph-mcpofficial
AlicenseNot gradedqualityCmaintenanceModel Context Protocol (MCP) server for TigerGraph that lets AI agents interact with TigerGraph through the MCP standard using pyTigerGraph's async APIs.3Apache 2.0
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
Cross-vendor AI memory over MCP. One semantic store, readable and writeable from every MCP client.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/FalkorDB/FalkorDB-MCPServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server