Y
Youmind MCP
A Model Context Protocol (MCP) server built with FastMCP that provides access to YouMind content.
创建于 1/17/2026
更新于 about 6 hours ago
README
Repository documentation and setup instructions
YouMind MCP Server
A Model Context Protocol (MCP) server built with FastMCP that provides access to YouMind content.
Installation
pip install youmind-mcp
Configuration
To get your authentication token:
- Log in to YouMind in your browser
- Open browser developer tools (F12)
- Go to Application/Storage > Cookies > https://youmind.com
- Copy the value of
sb-flzdupptcpbcowdaetfq-auth-token
Usage
Configure your MCP client (e.g., Claude Desktop, Cursor) and set the token in the env section:
{
"mcpServers": {
"youmind": {
"command": "youmind-mcp",
"env": {
"YOUMIND_AUTH_TOKEN": "sb-flzdupptcpbcowdaetfq-auth-token=your-actual-token-here"
}
}
}
}
Available Tools
get_craft_content
Retrieves the plain text content of a craft by its ID.
Parameters:
craft_id(string, required): The ID of the craft to retrieve
Returns:
- The plain text content of the craft
Example:
get_craft_content(craft_id="019bc6bc-e1cc-79a2-a6fd-448b711a8895")
快速设置
此服务器的安装指南
安装包 (如果需要)
uvx youmind-mcp
Cursor 配置 (mcp.json)
{
"mcpServers": {
"nosugarcoffee-youmind-mcp": {
"command": "uvx",
"args": [
"youmind-mcp"
]
}
}
}