m

my-mcp-server

@sageethhimachala/my-mcp-server
0 Stars 171 次浏览 sageethhimachala 更新于 2026-08-23

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "my-mcp-remote-server": {
      "args": [
        "mcp-remote",
        "https://my-mcp-server.sageethhimachala.workers.dev/sse"
      ],
      "command": "npx"
    }
  }
}

服务介绍

My MCP Remote Server

This is a Model Context Protocol (MCP) server that exposes two tools:

cv_chat answers questions about my CV

send_mail sends emails using the Resend API

Its deployed at:

https://my-mcp-server.sageethhimachala.workers.dev/sse

You can connect to it from Claude Desktop or any MCP-compatible client.

Installation

No installation is needed if youre only using the hosted server URL.
If you want to run it locally for development:

git clone https://github.com/sageethhimachala/my-mcp-server

cd my-mcp-server

npm install

npm run dev # or your start command

Connecting to Claude Desktop

In Claude Desktop, open Settings Developer Edit Config, and add this to claude_desktop_config.json file:

{
  "mcpServers": {
    "my-mcp-remote-server": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://my-mcp-server.sageethhimachala.workers.dev/sse"
      ]
    }
  }
}

This tells Claude Desktop to connect to the hosted MCP server.
After adding and saving the changes to the file, make sure to open Task Manager, end the Claude Desktop process, and then restart Claude Desktop.

Tools Provided

  1. cv_chat

Purpose: Answer questions about my CV

Input:

{
"question": "What is my email?"
}

Output:

{
"text": "My email address is sageethhimachala@gmail.com."
}

  1. send_mail

Purpose: Send emails using the Resend API.

Input:

{
"to": "sageethhimachala@gmail.com",
"subject": "Hello",
"body": "This is a test email"
}

Output:

{
text": "Email sent successfully to sageethhimachala@gmail.com. ID: b351XXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
}

相关 MCP 服务