-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstart-cli.sh
More file actions
executable file
·29 lines (24 loc) · 917 Bytes
/
start-cli.sh
File metadata and controls
executable file
·29 lines (24 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
# Script to start a single instance of the MCP server
# This is a simplified version that starts just one pair of services
set -e
echo "Starting single instance of the MCP server..."
echo "MCP Server will be available at: http://localhost:8180"
echo "Responses Server will be available at: http://localhost:3000"
echo
# Start the single instance
docker-compose -f docker-compose.cli.yml up -d --build
echo
echo "Single instance started successfully!"
echo
echo "Services:"
echo " MCP Server: http://localhost:8180"
echo " Responses Server: http://localhost:3000"
echo
echo "MCP Configuration:"
echo " Use servers_config.json for MCP client integration"
echo " Server URL: http://localhost:8180"
echo
echo "To stop the instance, run: docker-compose -f docker-compose.1.yml down"
echo "To view logs, run: docker-compose -f docker-compose.1.yml logs -f"
echo "To view running containers: docker ps"