grumpydev-mcp
by sinedied·★ 21·Score 37
An MCP server that simulates a grumpy senior developer reviewing code with sarcastic feedback.
Overview
This MCP server provides code review functionality with a unique twist - it delivers feedback in the persona of a grumpy senior developer, complete with sarcastic and cynical comments. It uses Node.js and integrates with GitHub Copilot and Claude Desktop. The tool can analyze code snippets and provide detailed feedback on style, best practices, and potential issues, making the review process entertaining while still delivering valuable insights.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this for team environments where a lighthearted, entertaining approach to code review is desired to maintain developer morale while still getting valuable feedback.
When NOT to choose this
Avoid in professional environments requiring formal, diplomatic communication or when the sarcastic tone might be perceived as unprofessional or demotivating to team members.
Tools this server exposes
1 tool extracted from the READMEreview_codeReview code with a grumpy senior developer's perspective
Note: Inferred from the example review section and general description, as no explicit tool name or signature is documented in the README
Comparable tools
Installation
Installation
- Using VS Code:
[](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)
- Using the command line:
``bash code --add-mcp '{"name":"grumpydev","command":"npx","args":["-y","grumpydev-mcp"]}' ``
- Manual installation in
.vscode/mcp.json:
``jsonc { "servers": { "grumpydev-mcp": { "type": "stdio", "command": "npx", "args": [ "-y", "grumpydev-mcp", ] } } } ``
For Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"grumpydev-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"grumpydev-mcp",
]
}
}
}FAQ
- What models does this MCP server support?
- It supports any model/provider supported by GenAIScript. By default, it uses GitHub Models with GPT-4o.
- Can I customize the grumpy developer's personality?
- Currently, the tool uses a fixed grumpy persona. You can only configure the underlying model, not the personality.
Compare grumpydev-mcp with
Last updated · Auto-generated from public README + GitHub signals.