roeel0 commited on
Commit
056ad2e
·
verified ·
1 Parent(s): 6229db1

Update entrypoint.sh

Browse files
Files changed (1) hide show
  1. entrypoint.sh +39 -43
entrypoint.sh CHANGED
@@ -2,50 +2,46 @@
2
 
3
  cat <<EOF > /app/config.json
4
  {
5
- "mcpServers": {
6
- "fetch": {
7
- "command": "uvx",
8
- "args": [
9
- "mcp-server-fetch"
10
- ]
11
- },
12
- "mcp-server-time": {
13
- "command": "uvx",
14
- "args": [
15
- "mcp-server-time",
16
- "--local-timezone=${TZ}"
17
- ],
18
- "alwaysAllow": [
19
- "get_current_time",
20
- "convert_time"
21
- ]
22
- },
23
- "sanhua": {
24
- "type": "sse",
25
- "url": "https://sanhua.himrr.com/mcp/sse"
26
- },
27
- "grok2_images": {
28
- "command": "npx",
29
- "args": [
30
- "-y",
31
32
- ],
33
- "env": {
34
- "XAIAPI_KEY": "${XAIAPI_KEY}",
35
- "XAIAPI_BASE_URL": "${XAIAPI_BASE_URL}"
36
- }
37
- },
38
- "tavily-mcp": {
39
- "command": "npx",
40
- "args": [
41
- "-y",
42
43
- ],
44
- "env": {
45
- "TAVILY_API_KEY": "${TAVILY_API_KEY}"
46
- }
47
- }
48
  }
 
49
  }
50
  EOF
51
 
 
2
 
3
  cat <<EOF > /app/config.json
4
  {
5
+ "mcpServers": {
6
+ "fetch": {
7
+ "command": "uvx",
8
+ "args": [
9
+ "mcp-server-fetch"
10
+ ]
11
+ },
12
+ "mcp-server-time": {
13
+ "command": "uvx",
14
+ "args": [
15
+ "mcp-server-time",
16
+ "--local-timezone=${TZ}"
17
+ ],
18
+ "alwaysAllow": [
19
+ "get_current_time",
20
+ "convert_time"
21
+ ]
22
+ },
23
+ "grok2_images": {
24
+ "command": "npx",
25
+ "args": [
26
+ "-y",
27
28
+ ],
29
+ "env": {
30
+ "XAIAPI_KEY": "${XAIAPI_KEY}",
31
+ "XAIAPI_BASE_URL": "${XAIAPI_BASE_URL}"
32
+ }
33
+ },
34
+ "tavily-mcp": {
35
+ "command": "npx",
36
+ "args": [
37
+ "-y",
38
+ "tavily-mcp@0.1.2"
39
+ ],
40
+ "env": {
41
+ "TAVILY_API_KEY": "${TAVILY_API_KEY}"
42
+ }
 
 
 
 
 
43
  }
44
+ }
45
  }
46
  EOF
47