Skip to content

Commit 5fbf8ed

Browse files
committed
fix: use port 3003 as default for HTTP server testing
1 parent 03901d3 commit 5fbf8ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

start_http_server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
set -e
55

6-
PORT="${CODEGRAPH_HTTP_PORT:-3000}"
6+
PORT="${CODEGRAPH_HTTP_PORT:-3003}"
77
HOST="${CODEGRAPH_HTTP_HOST:-127.0.0.1}"
88

99
echo "🚀 Starting CodeGraph HTTP Server"

test_http_agentic.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
set -e
55

6-
PORT="${CODEGRAPH_HTTP_PORT:-3000}"
6+
PORT="${CODEGRAPH_HTTP_PORT:-3003}"
77
HOST="${CODEGRAPH_HTTP_HOST:-127.0.0.1}"
88
BASE_URL="http://${HOST}:${PORT}"
99

test_http_agentic_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
# Configuration
4444
HTTP_HOST = os.environ.get("CODEGRAPH_HTTP_HOST", "127.0.0.1")
45-
HTTP_PORT = os.environ.get("CODEGRAPH_HTTP_PORT", "3000")
45+
HTTP_PORT = os.environ.get("CODEGRAPH_HTTP_PORT", "3003")
4646
BASE_URL = f"http://{HTTP_HOST}:{HTTP_PORT}"
4747
PROTO_DEFAULT = os.environ.get("MCP_PROTOCOL_VERSION", "2025-06-18")
4848

0 commit comments

Comments
 (0)