🤖 AI Development Assistant MCP Server
MCP server with custom tools designed specifically for DegenDuel
Overview
DegenDuel MCP is an AI-powered development assistant designed as a Model Context Protocol (MCP) server, providing intelligent coding assistance through custom tools tailored for developers.
To use DegenDuel MCP, set up your environment variables, install the necessary packages, and configure it within the Cursor application as an MCP server.
- Code Architect: Generates plans and instructions for coding agents using advanced reasoning LLMs. - Screenshot Buddy: Analyzes UI design screenshots for use with the composer agent. - Code Review: Triggers code reviews using git diffs.
- Assisting developers in creating structured code plans.
- Reviewing code for best practices and potential improvements.
- Analyzing UI designs to enhance user experience.
Add to your AI client
Use these steps to connect 🤖 AI Development Assistant MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"degenduel-mcp-branchmanager69": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-degenduel-mcp-branchmanager69"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"degenduel-mcp-branchmanager69": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-degenduel-mcp-branchmanager69"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"degenduel-mcp-branchmanager69": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-degenduel-mcp-branchmanager69"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"degenduel-mcp-branchmanager69": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-degenduel-mcp-branchmanager69"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"degenduel-mcp-branchmanager69": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-degenduel-mcp-branchmanager69"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"degenduel-mcp-branchmanager69": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-degenduel-mcp-branchmanager69"
]
}
}
}FAQ
Can I use DegenDuel MCP for production?
No, this project is primarily a tutorial demo and not production-ready.
How do I set up the environment?
Create a file at `src/env/keys.ts` and add your API keys there.
Is there support for issues?
You can open an issue for bugs, but the project is not actively maintained.