Back to MCP directory
publicPublicdnsLocal runtime

my-mcp

一个基于Model Context Protocol (MCP)的服务端项目,提供日历查询、基础数学计算和问候语等功能,用于与LLMs(如Cursor AI)集成。

article

README

🚀 🧠 Ibrahim's MCP Server

这是一个基于@modelcontextprotocol/sdk构建的模型上下文协议(MCP)服务器。它提供了诸如日历查询、基础数学计算和问候语等工具和资源,可与Cursor AI等大语言模型(LLM)集成使用。

🚀 快速开始

安装依赖

# 克隆仓库
git clone https://github.com/ibrahim-sajib/my-mcp.git

# 进入项目目录
cd my-mcp

# 安装Node.js依赖
npm install

# 创建环境变量文件
cp .env.example .env

# 打开.env文件并设置以下变量:
# GOOGLE_PUBLIC_API_KEY=
# CALENDAR_ID=

# 启动服务器
node server.js
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client