forked from Claude-Workspace/claude-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json.example
More file actions
33 lines (33 loc) · 790 Bytes
/
.mcp.json.example
File metadata and controls
33 lines (33 loc) · 790 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
30
31
32
33
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_TOKEN": "${GITHUB_TOKEN}"
}
},
"directus": {
"command": "npx",
"args": ["-y", "@directus/mcp-server-directus"],
"env": {
"DIRECTUS_URL": "${DIRECTUS_URL}",
"DIRECTUS_TOKEN": "${DIRECTUS_TOKEN}"
}
},
"directus-http": {
"type": "http",
"url": "https://your-directus.example.com/mcp",
"headers": {
"Authorization": "Bearer ${DIRECTUS_TOKEN}"
}
},
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres"],
"env": {
"POSTGRES_CONNECTION_STRING": "${DATABASE_URL}"
}
}
}
}