Last active
July 15, 2026 02:14
-
-
Save hunzo/e924e03abc12c0e00b6a0f44efbf1670 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
| { | |
| "$schema": "https://opencode.ai/config.json", | |
| "mcp": { | |
| "filesystem": { | |
| "type": "local", | |
| "command": [ | |
| "npx", | |
| "-y", | |
| "@modelcontextprotocol/server-filesystem", | |
| "." | |
| ], | |
| "enabled": true, | |
| "timeout": 10000 | |
| }, | |
| "fetch": { | |
| "type": "local", | |
| "command": [ | |
| "uvx", | |
| "mcp-server-fetch" | |
| ], | |
| "enabled": true, | |
| "timeout": 30000 | |
| }, | |
| "git": { | |
| "type": "local", | |
| "command": [ | |
| "uvx", | |
| "mcp-server-git", | |
| "--repository", | |
| "." | |
| ], | |
| "enabled": true, | |
| "timeout": 10000 | |
| }, | |
| "memory": { | |
| "type": "local", | |
| "command": [ | |
| "npx", | |
| "-y", | |
| "@modelcontextprotocol/server-memory" | |
| ], | |
| "enabled": true | |
| }, | |
| "time": { | |
| "type": "local", | |
| "command": [ | |
| "uvx", | |
| "mcp-server-time" | |
| ], | |
| "enabled": true | |
| }, | |
| "sequential-thinking": { | |
| "type": "local", | |
| "command": [ | |
| "npx", | |
| "-y", | |
| "@modelcontextprotocol/server-sequential-thinking" | |
| ], | |
| "enabled": true | |
| }, | |
| "playwright": { | |
| "type": "local", | |
| "command": [ | |
| "npx", | |
| "-y", | |
| "@playwright/mcp" | |
| ], | |
| "enabled": true | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment