@falkordb/mcpserver 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +10 -5
- package/package.json +1 -1
package/.env.example
CHANGED
|
@@ -2,17 +2,22 @@
|
|
|
2
2
|
NODE_ENV=development
|
|
3
3
|
|
|
4
4
|
# MCP Transport Configuration
|
|
5
|
-
# Transport mode: '
|
|
6
|
-
MCP_TRANSPORT
|
|
7
|
-
|
|
5
|
+
# Transport mode: 'http' (Streamable HTTP) or 'stdio'. The app falls back to
|
|
6
|
+
# 'stdio' when MCP_TRANSPORT is unset; this sample and the Docker image use 'http'.
|
|
7
|
+
MCP_TRANSPORT=http
|
|
8
|
+
# Port for HTTP transport. Defaults to 3000 when unset; the published Docker
|
|
9
|
+
# image listens on 8080 (see docker-compose.yml).
|
|
8
10
|
# MCP_PORT=3000
|
|
9
|
-
# API key for HTTP transport authentication
|
|
10
|
-
#
|
|
11
|
+
# API key for HTTP transport authentication. When set, every HTTP request must
|
|
12
|
+
# send `Authorization: Bearer <key>`. Leave unset to disable auth — not
|
|
13
|
+
# recommended whenever the HTTP port is reachable beyond localhost.
|
|
14
|
+
# MCP_API_KEY=your_mcp_api_key_here
|
|
11
15
|
|
|
12
16
|
# FalkorDB Configuration
|
|
13
17
|
# When using Docker Compose, set FALKORDB_HOST=falkordb (the service name)
|
|
14
18
|
FALKORDB_HOST=localhost
|
|
15
19
|
FALKORDB_PORT=6379
|
|
20
|
+
FALKORDB_WEB_PORT=3000
|
|
16
21
|
FALKORDB_USERNAME=
|
|
17
22
|
FALKORDB_PASSWORD=
|
|
18
23
|
# Set to 'true' to use read-only queries by default (useful for replica instances)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@falkordb/mcpserver",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Model Context Protocol server for FalkorDB graph databases - enables AI assistants to query and manage graph data using natural language",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|