mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Add PostHog server configuration to MCP setup
This commit is contained in:
parent
2a92312b85
commit
4b493d7b8b
1 changed files with 28 additions and 15 deletions
|
|
@ -1,16 +1,29 @@
|
|||
{
|
||||
"mcpServers": {
|
||||
"github": {
|
||||
"command": "docker",
|
||||
"args": [
|
||||
"run",
|
||||
"-i",
|
||||
"--rm",
|
||||
"-e",
|
||||
"GITHUB_PERSONAL_ACCESS_TOKEN=${env:GITHUB_PERSONAL_ACCESS_TOKEN}",
|
||||
"ghcr.io/github/github-mcp-server"
|
||||
],
|
||||
"alwaysAllow": []
|
||||
}
|
||||
}
|
||||
}
|
||||
"mcpServers": {
|
||||
"github": {
|
||||
"command": "docker",
|
||||
"args": [
|
||||
"run",
|
||||
"-i",
|
||||
"--rm",
|
||||
"-e",
|
||||
"GITHUB_PERSONAL_ACCESS_TOKEN=${env:GITHUB_PERSONAL_ACCESS_TOKEN}",
|
||||
"ghcr.io/github/github-mcp-server"
|
||||
],
|
||||
"alwaysAllow": []
|
||||
},
|
||||
"posthog": {
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"mcp-remote@latest",
|
||||
"https://mcp.posthog.com/sse",
|
||||
"--header",
|
||||
"Authorization:${POSTHOG_AUTH_HEADER}"
|
||||
],
|
||||
"env": {
|
||||
"POSTHOG_AUTH_HEADER": "Bearer ${env:POSTHOG_PERSONAL_ACCESS_TOKEN}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue