@falkordb/mcpserver 1.2.1 → 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 CHANGED
@@ -2,17 +2,22 @@
2
2
  NODE_ENV=development
3
3
 
4
4
  # MCP Transport Configuration
5
- # Transport mode: 'stdio' (default) or 'http' (Streamable HTTP)
6
- MCP_TRANSPORT=stdio
7
- # Port for HTTP transport (default: 3000)
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 (required for HTTP mode)
10
- # MCP_API_KEY=
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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  [![Tests](https://img.shields.io/github/actions/workflow/status/falkordb/FalkorDB-MCPServer/node.yml?branch=main)](https://github.com/falkordb/FalkorDB-MCPServer/actions/workflows/node.yml)
2
- [![Coverage](https://codecov.io/gh/falkordb/FalkorDB-MCPServer/branch/main/graph/badge.svg?token=nNxm2N0Xrl)](https://codecov.io/gh/falkordb/FalkorDB-MCPServer)
2
+ [![codecov](https://codecov.io/gh/falkordb/FalkorDB-MCPServer/graph/badge.svg?token=pqGhrlbC1F)](https://codecov.io/gh/falkordb/FalkorDB-MCPServer)
3
3
  [![License](https://img.shields.io/github/license/falkordb/FalkorDB-MCPServer.svg)](https://github.com/falkordb/FalkorDB-MCPServer/blob/main/LICENSE)
4
4
  [![Discord](https://img.shields.io/discord/1146782921294884966.svg?style=social&logo=discord)](https://discord.com/invite/99y2Ubh6tg)
5
5
  [![X (formerly Twitter)](https://img.shields.io/badge/follow-%40falkordb-1DA1F2?logo=x&style=social)](https://x.com/falkordb)
@@ -466,4 +466,4 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
466
466
 
467
467
  <p align="center">
468
468
  Made with ❤️ by the FalkorDB team & Katie Mulliken
469
- </p>
469
+ </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@falkordb/mcpserver",
3
- "version": "1.2.1",
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",