Duyet Professional Profile MCP server

Provides access to Duyet's professional information including CV, GitHub activity, and blog posts, with contact capabilities for collaboration and consulting inquiries.
Back to servers
Setup instructions
Provider
duyet
Release date
Jun 29, 2025
Stats
2 stars

The duyet-mcp-server is an experimental Model Context Protocol (MCP) server that allows AI assistants to access information about duyet. The server provides AI assistants with structured access to content primarily available on duyet.net without requiring manual web browsing.

Installation Options

Using with AI Assistants

To connect your AI assistant to duyet-mcp-server, update your MCP server configuration:

{
  "mcpServers": {
    "duyet-mcp-server": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.duyet.net/sse"
      ]
    }
  }
}

For Claude Code users, you can simply run:

claude mcp add --transport http duyet https://mcp.duyet.net/mcp

The server offers two endpoint options:

Deploying Your Own Instance

You can deploy your own instance of the server to Cloudflare Workers using the following steps:

git clone https://github.com/duyet/duyet-mcp-server
cd duyet-mcp-server
npm install
npm run deploy

This will deploy your MCP server to a URL like: duyet-mcp-server.<your-account>.workers.dev/sse

Connecting to Your MCP Server

Using Cloudflare AI Playground

You can test your MCP server with the Cloudflare AI Playground:

  1. Go to https://playground.ai.cloudflare.com/
  2. Enter your deployed MCP server URL
  3. Start using the duyet information tools

Connecting with Claude Desktop

To connect from Claude Desktop:

  1. Follow Anthropic's Quickstart guide at https://modelcontextprotocol.io/quickstart/user
  2. Go to Settings > Developer > Edit Config
  3. Update the configuration:
{
  "mcpServers": {
    "duyet-info": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://duyet-mcp-server.<your-account>.workers.dev/sse"
      ]
    }
  }
}

Available Features

Resources

The server provides read-only information through URI-based requests:

  • duyet://about - Basic information about Duyet
  • duyet://cv/{format} - CV/resume in various formats (summary, detailed, JSON)
  • duyet://blog/posts/{limit} - Latest blog posts (limit: 1-10)
  • duyet://github-activity - Recent GitHub contributions

Tools

Interactive tools with input parameters:

  • send_message - Send a message to Duyet
  • get_cv - Retrieve Duyet's CV in different formats
  • get_github_activity - View recent GitHub activity
  • hire_me - Get information about hiring Duyet
  • say_hi - Send a friendly greeting
  • contact_analytics - Generate analytics reports on contact submissions

Usage Examples

Learning About Duyet

Example conversation flow:

User: Who is Duyet and what does he do?
Claude: [Accesses duyet://about]
[Shows information about Duyet's experience and expertise]

User: What has he been writing about lately?
Claude: [Accesses duyet://blog/posts/3]
[Shows recent blog posts]

Hiring and Collaboration

User: I'm looking to hire a data engineer.
Claude: I can help you send a message using the send_message tool.

User: [Provides job details]
Claude: [Executes send_message tool]
Your message has been sent! Reference ID: abc-123-def

Technical Research

User: I want to understand Duyet's technical background
Claude: [Accesses duyet://cv/detailed]
[Shows detailed CV information]

User: Can you show me some of his recent technical work?
Claude: [Accesses duyet://github-activity]
[Shows recent GitHub contributions]

The MCP server design allows AI assistants to naturally discover and reference information, making conversations more fluid and interactive.

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "duyet-mcp-server" '{"command":"npx","args":["mcp-remote","https://mcp.duyet.net/sse"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "duyet-mcp-server": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.duyet.net/sse"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "duyet-mcp-server": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.duyet.net/sse"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later