Created
July 20, 2025 06:13
-
-
Save foyzulkarim/803f567ceea38fa86f5c5ed7a3b9479e to your computer and use it in GitHub Desktop.
mcpServers Configuration for Model Context Protocol Runners
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": { | |
"fetch": { | |
"command": "uvx", | |
"args": ["mcp-server-fetch"], | |
"env": {}, | |
"disabled": false, | |
"autoApprove": [] | |
}, | |
"filesystem": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-filesystem", | |
"/Users/foyzul/personal" | |
], | |
"disabled": false, | |
"autoApprove": [ | |
"create_directory" | |
] | |
}, | |
"git": { | |
"command": "uvx", | |
"args": [ | |
"mcp-server-git" | |
], | |
"disabled": false, | |
"autoApprove": [] | |
}, | |
"memory": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-memory" | |
], | |
"disabled": false, | |
"autoApprove": [] | |
}, | |
"sequential-thinking": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-sequential-thinking" | |
], | |
"disabled": false, | |
"autoApprove": [] | |
}, | |
"playwright": { | |
"command": "npx", | |
"args": [ | |
"@playwright/mcp@latest" | |
], | |
"disabled": false, | |
"autoApprove": [ | |
"browser_navigate", | |
"browser_close" | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment