Back to MCP directory
publicPublicdnsLocal runtime

mcp-server-yfc

一个为InterviewReady提供内容管理和用户服务的MCP服务器,包含获取学习资源和设置提醒等功能。

article

README

🚀 mcp-server

mcp-server 是 InterviewReady 的一个 MCP 服务器,它具备获取和更新两大核心操作。获取操作可通过公开 API 从 InterviewReady 中获取最相关的内容,涵盖博客、资源和课程材料;更新操作则允许向用户的笔记中添加注释,并为未来的课程设置 Google 提醒。你可以根据需求随意添加或更改此仓库的功能。

🚀 快速开始

✨ 主要特性

  • 获取操作:公开 API 以从 InterviewReady 中获取最相关的内容,包括博客、资源和课程材料。
  • 更新操作:允许向用户的笔记中添加注释,并为未来的课程设置 Google 提醒。

📦 安装指南

  1. 克隆仓库
  2. 运行 pnpm install
  3. 运行 pnpm run build

💻 使用示例

与 Claude Desktop 配置一起使用

  1. 编辑 Claude 桌面的配置文件 claude_desktop_config.json
  2. 在配置文件中添加以下内容:
{
    "interviewready-mcp-server": {
            "command": "node",
            "args": [
                "{path-to-repo}/mcp-server/build/index.js"
            ]
        }
} 

与 Cursor 配置一起使用

  1. 转到 Cursor > 设置 > 游标设置
  2. 转到 MCP 标签
  3. 添加以下内容到配置文件中:
{
    "interviewready-mcp-server": {
            "command": "node",
            "args": [
                "{path-to-repo}/mcp-server/build/index.js"
            ]
        }
} 
  1. 以代理模式使用。出于某种原因,MCP 在问答模式下不起作用。

📚 详细文档

  • 如果你对该仓库的功能有任何疑问,请在讨论区发布。
  • 如果遇到任何问题或故障,请创建一个问题。
  • 请在提交 PR 前进行自我审查,该仓库对更改开放!
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