forked from stainless-api/mcp-front
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-token.example.json
More file actions
59 lines (59 loc) · 1.48 KB
/
config-token.example.json
File metadata and controls
59 lines (59 loc) · 1.48 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"version": "v0.0.1-DEV_EDITION_EXPECT_CHANGES",
"proxy": {
"baseURL": "http://localhost:8080",
"addr": ":8080",
"name": "mcp-front-dev"
},
"mcpServers": {
"postgres": {
"transportType": "stdio",
"command": "docker",
"args": [
"run", "--rm", "-i", "--network", "host",
"-e", "POSTGRES_HOST=localhost",
"-e", "POSTGRES_PORT=5432",
"-e", "POSTGRES_DATABASE=testdb",
"-e", "POSTGRES_USER=testuser",
"-e", "POSTGRES_PASSWORD=testpass",
"us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:latest",
"--stdio", "--prebuilt", "postgres"
],
"serviceAuths": [
{
"type": "bearer",
"tokens": ["dev-token-postgres-1", "dev-token-postgres-2"]
}
]
},
"notion": {
"transportType": "stdio",
"command": "docker",
"args": ["run", "--rm", "-i", "-e", "NOTION_TOKEN", "mcp/notion"],
"env": {
"NOTION_TOKEN": "test-notion-token"
},
"serviceAuths": [
{
"type": "bearer",
"tokens": ["dev-token-notion-1"]
}
]
},
"git": {
"transportType": "stdio",
"command": "docker",
"args": [
"run", "--rm", "-i",
"-v", "/tmp/test-repos:/repos:ro",
"mcp/git"
],
"serviceAuths": [
{
"type": "bearer",
"tokens": ["dev-token-git-1", "dev-token-git-2", "dev-token-git-3"]
}
]
}
}
}