Eric Dai commited on
Commit
18236b5
·
1 Parent(s): 33a1692

Change port config

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. travel_mcp_client.py +1 -1
  3. travel_mcp_server.py +1 -1
README.md CHANGED
@@ -47,7 +47,7 @@ ollama pull gemma3:4b
47
  ```bash
48
  python travel_mcp_server.py
49
  ```
50
- The server will start at `http://127.0.0.1:7861` with MCP endpoint at `http://127.0.0.1:7861/gradio_api/mcp/sse`
51
 
52
  ### 4. Start the AI Agent Client
53
  ```bash
 
47
  ```bash
48
  python travel_mcp_server.py
49
  ```
50
+ The server will start at `http://127.0.0.1:7860` with MCP endpoint at `http://127.0.0.1:7860/gradio_api/mcp/sse`
51
 
52
  ### 4. Start the AI Agent Client
53
  ```bash
travel_mcp_client.py CHANGED
@@ -23,7 +23,7 @@ def self_introduction() -> str:
23
 
24
 
25
  mcp_client = MCPClient(
26
- {"url": "http://127.0.0.1:7861/gradio_api/mcp/sse"}
27
  )
28
 
29
  try:
 
23
 
24
 
25
  mcp_client = MCPClient(
26
+ {"url": "http://127.0.0.1:7860/gradio_api/mcp/sse"}
27
  )
28
 
29
  try:
travel_mcp_server.py CHANGED
@@ -204,5 +204,5 @@ if __name__ == "__main__":
204
  # share=True,
205
  show_error=True,
206
  mcp_server=True,
207
- server_port=7861
208
  )
 
204
  # share=True,
205
  show_error=True,
206
  mcp_server=True,
207
+ # server_port=7861
208
  )