chore: Update default transport from SSE to HTTP
- Changed default transport to 'http' as SSE is deprecated - Updated all configuration files to use HTTP transport - Updated Docker compose commands to use HTTP transport - Updated comments to reflect HTTP transport usage This change ensures the MCP server uses the recommended HTTP transport instead of the deprecated SSE transport. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
67779c94bf
commit
0f2b7e9caa
7 changed files with 10 additions and 10 deletions
|
|
@ -2,7 +2,7 @@
|
|||
# This configuration is optimized for running with docker-compose-falkordb.yml
|
||||
|
||||
server:
|
||||
transport: "sse" # SSE for HTTP access from Docker
|
||||
transport: "http" # HTTP transport (SSE is deprecated)
|
||||
host: "0.0.0.0"
|
||||
port: 8000
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
# It uses persistent KuzuDB storage at /data/graphiti.kuzu
|
||||
|
||||
server:
|
||||
transport: "sse" # SSE for HTTP access from Docker
|
||||
transport: "http" # HTTP transport (SSE is deprecated)
|
||||
host: "0.0.0.0"
|
||||
port: 8000
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# This configuration is optimized for running with docker-compose-neo4j.yml
|
||||
|
||||
server:
|
||||
transport: "sse" # SSE for HTTP access from Docker
|
||||
transport: "http" # HTTP transport (SSE is deprecated)
|
||||
host: "0.0.0.0"
|
||||
port: 8000
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# This file supports environment variable expansion using ${VAR_NAME} or ${VAR_NAME:default_value}
|
||||
|
||||
server:
|
||||
transport: "sse" # Options: stdio, sse, http
|
||||
transport: "http" # Options: stdio, sse (deprecated), http
|
||||
host: "0.0.0.0"
|
||||
port: 8000
|
||||
|
||||
|
|
|
|||
|
|
@ -50,8 +50,8 @@ services:
|
|||
volumes:
|
||||
- ../config/config-docker-falkordb.yaml:/app/config/config.yaml:ro
|
||||
ports:
|
||||
- "8000:8000" # Expose the MCP server via HTTP for SSE transport
|
||||
command: ["uv", "run", "src/graphiti_mcp_server.py", "--transport", "sse", "--config", "/app/config/config.yaml"]
|
||||
- "8000:8000" # Expose the MCP server via HTTP transport
|
||||
command: ["uv", "run", "src/graphiti_mcp_server.py", "--transport", "http", "--config", "/app/config/config.yaml"]
|
||||
|
||||
volumes:
|
||||
falkordb_data:
|
||||
|
|
|
|||
|
|
@ -56,8 +56,8 @@ services:
|
|||
volumes:
|
||||
- ../config/config-docker-neo4j.yaml:/app/config/config.yaml:ro
|
||||
ports:
|
||||
- "8000:8000" # Expose the MCP server via HTTP for SSE transport
|
||||
command: ["uv", "run", "src/graphiti_mcp_server.py", "--transport", "sse", "--config", "/app/config/config.yaml"]
|
||||
- "8000:8000" # Expose the MCP server via HTTP transport
|
||||
command: ["uv", "run", "src/graphiti_mcp_server.py", "--transport", "http", "--config", "/app/config/config.yaml"]
|
||||
|
||||
volumes:
|
||||
neo4j_data:
|
||||
|
|
|
|||
|
|
@ -33,8 +33,8 @@ services:
|
|||
# Persistent KuzuDB data storage
|
||||
- kuzu_data:/data
|
||||
ports:
|
||||
- "8000:8000" # Expose the MCP server via HTTP for SSE transport
|
||||
command: ["uv", "run", "src/graphiti_mcp_server.py", "--transport", "sse", "--config", "/app/config/config.yaml"]
|
||||
- "8000:8000" # Expose the MCP server via HTTP transport
|
||||
command: ["uv", "run", "src/graphiti_mcp_server.py", "--transport", "http", "--config", "/app/config/config.yaml"]
|
||||
|
||||
# Volume for persistent KuzuDB storage
|
||||
volumes:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue