drio
Open app

Resume AI Demo

Source

A demonstration repository for testing GitHub MCP server functionality

Catalog onlyCatalog onlySTDIO

Overview

Resume AI Demo is a demonstration repository created to showcase the functionality of GitHub MCP (Model Context Protocol) servers, which enhance AI assistant capabilities for interacting with external services like GitHub.

To use Resume AI Demo, you can explore the repository on GitHub, where you can see examples of how to perform GitHub operations using the MCP tool.

  • Created repository via MCP tool - Added README file via MCP tool - Demonstrated search capabilities
  1. Testing GitHub operations through AI assistants.
  2. Learning how MCP servers can enhance AI functionalities.
  3. Demonstrating the integration of AI with GitHub services.

Add to your AI client

Use these steps to connect Resume AI Demo 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": {
    "resume-ai-demo-dustinbturner": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-resume-ai-demo-dustinbturner"
      ]
    }
  }
}

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": {
    "resume-ai-demo-dustinbturner": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-resume-ai-demo-dustinbturner"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "resume-ai-demo-dustinbturner": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-resume-ai-demo-dustinbturner"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "resume-ai-demo-dustinbturner": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-resume-ai-demo-dustinbturner"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "resume-ai-demo-dustinbturner": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-resume-ai-demo-dustinbturner"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "resume-ai-demo-dustinbturner": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-resume-ai-demo-dustinbturner"
      ]
    }
  }
}

FAQ

What is an MCP server?

MCP servers extend AI assistant capabilities by providing tools for interacting with external services like GitHub.

How can I contribute to this repository?

You can fork the repository and submit pull requests with your contributions.

Is this project open source?

Yes, the repository is open for public access and contributions.