Provides brutally honest, sarcastic code reviews from a simulated grumpy senior developer with 40+ years of experience,...
Created byApr 23, 2025
Grumpy Senior Developer as MCP server
[](https://codespaces.new/sinedied/grumpydev-mcp?hide_repo_select=true&ref=main&quickstart=true)
[](https://discord.gg/kzRShWzttr)
[](https://www.youtube.com/playlist?list=PLlrxD0HtieHi5ZpsHULPLxm839IrhmeDk)
[](https://www.npmjs.com/package/grumpydev-mcp)

[](LICENSE)
Are you a senior dev, tired of reviewing and fixing the mess made by these vibe-coded PRs? Or maybe a you're a vibe coder, tired of being told to fix your code? This is the perfect MCP tool for both of you!
This MCP server is designed to provide the same perspective as the (grumpy) senior dev of your team. It will review your code, tell you what needs to be fixed and what's wrong with it. All with the sarcastic and cynical tone you've come to expect.
Code to review:
Result:
[!NOTE]
**What's MCP?**<br>[Model Context Protocol (MCP)](https://github.com/rajyraman/genai-mcp/tree/main#:~:text=MCP%20specification%2C%20defines-,Model%20Context%20Protocol,-MCP%20is%20an) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications. Just as USB-C provides a standardized way to connect your devices to various peripherals and accessories, MCP provides a standardized way to connect AI models to different data sources and tools.
Usage
This tool requires [Node.js 20+](https://nodejs.org/en/download/) to be installed on your system.
Use with GitHub Copilot
[!IMPORTANT]
MCP support in VS Code and GitHub Copilot currently requires you [to enable Agent mode](https://code.visualstudio.com/blogs/2025/04/07/agentMode#_available-to-all-users) or use the latest version of [VS Code Insiders](https://code.visualstudio.com/insiders/) or later. You can install the Insiders version alongside your regular version of VS Code.
You can install the MCP server using the following links:
[](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522grumpydev%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522grumpydev-mcp%2540latest%2522%255D%257D)
[](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522grumpydev%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522grumpydev-mcp%2540latest%2522%255D%257D)
Or by using the command line:
Or adding it manually in the `.vscode/mcp.json` file in your workspace:
Use with Claude desktop
Add this to your `claude_desktop_config.json`:
Test with MCP inspector
In a terminal window, start MCP Inspector:
```bash
npx -y @modelcontextprotocol/inspector
```
Ctrl+click to load the MCP Inspector web app from the URL displayed by the app (e.g. http://127.0.0.1:6274)
Set the command to `npx` and the arguments to `-y grumpydev-mcp`, then click on the **Connect** button.
In the **Tools** tab, select **List Tools**. Click on a tool and select **Run Tool**.
Model configuration
You can configure the model used by this MCP server by setting the `GENAISCRIPT_DEFAULT_MODEL` environment variable. This variable should contain the provider and name of the model you want to use, such as `github:gpt-4o`. By default, it uses [GitHub Models](https://github.com/marketplace/models) with GPT-4o model.
You can use any provider/model supported by [GenAIScript](https://microsoft.github.io/genaiscript/getting-started/configuration/), see the [model configuration](https://microsoft.github.io/genaiscript/getting-started/configuration/) section for more details. Some models may require additional configuration as environment variables, such as API keys or other credentials.
About
This MCP tool was built using [GenAIScript](https://microsoft.github.io/genaiscript/).