Last active
September 26, 2025 03:58
-
-
Save thirdlf03/646250bf509665877c27534c2df170a9 to your computer and use it in GitHub Desktop.
検証用のMCP設定
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": { | |
| "serena": { | |
| "tools": [ | |
| "*" | |
| ], | |
| "type": "local", | |
| "command": "uvx", | |
| "args": [ | |
| "--from", | |
| "git+https://github.com/oraios/serena", | |
| "serena", | |
| "start-mcp-server" | |
| ] | |
| }, | |
| "chrome-devtools": { | |
| "type": "local", | |
| "command": "npx", | |
| "tools": [ | |
| "*" | |
| ], | |
| "args": [ | |
| "chrome-devtools-mcp@latest" | |
| ] | |
| }, | |
| "context7": { | |
| "type": "local", | |
| "command": "npx", | |
| "tools": [ | |
| "*" | |
| ], | |
| "args": [ | |
| "-y", | |
| "@upstash/context7-mcp", | |
| "--api-key", | |
| "<your_api_key>" | |
| ] | |
| }, | |
| "fetch-mcp": { | |
| "type": "local", | |
| "command": "npx", | |
| "tools": [ | |
| "*" | |
| ], | |
| "args": [ | |
| "mcp-fetch-server" | |
| ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment