consolidate: HQ MCP 14-connector config
Browse files- hq/mcp_config.json +18 -0
hq/mcp_config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mcpServers": {
|
| 3 |
+
"github": {"command": "npx", "args": ["-y","@modelcontextprotocol/server-github"], "env": {"GITHUB_TOKEN": "${GITHUB_TOKEN}"}},
|
| 4 |
+
"slack": {"command": "npx", "args": ["-y","@modelcontextprotocol/server-slack"], "env": {"SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}"}},
|
| 5 |
+
"notion": {"command": "npx", "args": ["-y","@modelcontextprotocol/server-notion"], "env": {"NOTION_API_KEY": "${NOTION_API_KEY}"}},
|
| 6 |
+
"linear": {"command": "npx", "args": ["-y","@linear/mcp-server"], "env": {"LINEAR_API_KEY": "${LINEAR_API_KEY}"}},
|
| 7 |
+
"supabase": {"command": "npx", "args": ["-y","@supabase/mcp-server-supabase"], "env": {"SUPABASE_URL": "${SUPABASE_URL}", "SUPABASE_SERVICE_KEY": "${SUPABASE_SERVICE_KEY}"}},
|
| 8 |
+
"figma": {"command": "npx", "args": ["-y","figma-mcp"], "env": {"FIGMA_TOKEN": "${FIGMA_TOKEN}"}},
|
| 9 |
+
"filesystem":{"command": "npx", "args": ["-y","@modelcontextprotocol/server-filesystem","${WORKSPACE_PATH}"]},
|
| 10 |
+
"memory": {"command": "npx", "args": ["-y","@modelcontextprotocol/server-memory"]},
|
| 11 |
+
"fetch": {"command": "npx", "args": ["-y","@modelcontextprotocol/server-fetch"]},
|
| 12 |
+
"brave": {"command": "npx", "args": ["-y","@modelcontextprotocol/server-brave-search"], "env": {"BRAVE_API_KEY": "${BRAVE_API_KEY}"}},
|
| 13 |
+
"puppeteer": {"command": "npx", "args": ["-y","@modelcontextprotocol/server-puppeteer"]},
|
| 14 |
+
"postgres": {"command": "npx", "args": ["-y","@modelcontextprotocol/server-postgres"], "env": {"DATABASE_URL": "${DATABASE_URL}"}},
|
| 15 |
+
"redis": {"command": "npx", "args": ["-y","mcp-redis"], "env": {"REDIS_URL": "${REDIS_URL}"}},
|
| 16 |
+
"alchemy": {"command": "npx", "args": ["-y","@alchemy/mcp-server"], "env": {"ALCHEMY_API_KEY": "${ALCHEMY_API_KEY}"}}
|
| 17 |
+
}
|
| 18 |
+
}
|