~/agent-config
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.

  1. 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"
          }
        }
      }
    }
    
  2. 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"
          ]
        }
      }
    }
    
  3. MCP

    Add Playwright MCP

    {
      "mcpServers": {
        "playwright": {
          "command": "npx",
          "args": ["-y", "@playwright/mcp@latest"]
        }
      }
    }
    
  4. MCP

    Add Fetch MCP (optional)

    Optional — lightweight HTTP reads without a browser

    {
      "mcpServers": {
        "fetch": {
          "command": "npx",
          "args": ["-y", "@modelcontextprotocol/server-fetch"]
        }
      }
    }