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.
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:
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
You can test your MCP server with the Cloudflare AI Playground:
To connect from Claude Desktop:
{
"mcpServers": {
"duyet-info": {
"command": "npx",
"args": [
"mcp-remote",
"https://duyet-mcp-server.<your-account>.workers.dev/sse"
]
}
}
}
The server provides read-only information through URI-based requests:
Interactive tools with input parameters:
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]
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
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.
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.
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.
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"
]
}
}
}
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.
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.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.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