Back to MCP directory
publicPublicdnsLocal runtime

youmind-mcp

YouMind MCP服务器是一个基于FastMCP构建的模型上下文协议服务器,提供对YouMind平台内容的访问功能,用户可通过认证令牌获取笔记内容。

article

README

🚀 YouMind MCP服务器

YouMind MCP服务器是基于FastMCP构建的模型上下文协议(MCP)服务器,可用于访问YouMind的内容。

📦 安装指南

使用以下命令安装YouMind MCP:

pip install youmind-mcp

🛠️ 配置说明

获取认证令牌

按以下步骤获取认证令牌:

  1. 在浏览器中登录YouMind。
  2. 打开浏览器开发者工具(按F12)。
  3. 转到“应用程序/存储”>“Cookies”>“https://youmind.com”。
  4. 复制 sb-flzdupptcpbcowdaetfq-auth-token 的值。

💻 使用示例

配置MCP客户端

配置MCP客户端(如Claude Desktop、Cursor),并在 env 部分设置令牌:

{
  "mcpServers": {
    "youmind": {
      "command": "youmind-mcp",
      "env": {
        "YOUMIND_AUTH_TOKEN": "sb-flzdupptcpbcowdaetfq-auth-token=your-actual-token-here"
      }
    }
  }
}

可用工具 - get_craft_content

get_craft_content 工具可根据ID检索工艺的纯文本内容。

参数说明

  • craft_id(字符串,必填):要检索的工艺ID。

返回值

返回工艺的纯文本内容。

示例代码

get_craft_content(craft_id="019bc6bc-e1cc-79a2-a6fd-448b711a8895")
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