Browse
KitCursor, Claude Code, Windsurf, Cline · 4 steps · 4 resources
MCP Developer Stack
Common MCP servers for day-to-day development — GitHub for repo context, filesystem for local files, and Playwright for browser verification.
- MCP
Add GitHub MCP
Replace YOUR_GITHUB_TOKEN with a PAT that has repo scope
{ "mcpServers": { "github": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-github"], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN" } } } } - MCP
Add Filesystem MCP
Set the path to your project root
{ "mcpServers": { "filesystem": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/absolute/path/to/your/project" ] } } } - MCP
Add Playwright MCP
{ "mcpServers": { "playwright": { "command": "npx", "args": ["-y", "@playwright/mcp@latest"] } } } - MCP
Add Fetch MCP (optional)
Optional — lightweight HTTP reads without a browser
{ "mcpServers": { "fetch": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-fetch"] } } }