Last active
October 23, 2025 20:57
-
-
Save hisashiyamaguchi/dfd412eb5aa596e3fa770c7f60223923 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "mcpServers": { | |
| "threatstream": { | |
| "command": "npx", | |
| "args": ["mcp-remote", "https://optic.threatstream.com/mcp", "--header", "Authorization:${AUTH_HEADER}"], | |
| "env": { | |
| "AUTH_HEADER": "Api-Key xxxx" | |
| } | |
| }, | |
| "cloudflare-observability": { | |
| "command": "npx", | |
| "args": ["mcp-remote", "https://observability.mcp.cloudflare.com/sse"] | |
| }, | |
| "chrome-devtools": { | |
| "command": "npx", | |
| "args": ["-y", "chrome-devtools-mcp@latest"] | |
| }, | |
| "playwright": { | |
| "command": "npx", | |
| "args": [ | |
| "@playwright/mcp@latest" | |
| ] | |
| }, | |
| "slack": { | |
| "command": "npx", | |
| "args": ["-y", "@modelcontextprotocol/server-slack"], | |
| "env": { | |
| "SLACK_BOT_TOKEN": "xxxx", | |
| "SLACK_TEAM_ID": "xxxx", | |
| "SLACK_CHANNEL_IDS": "xxxx" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment