.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/ifuryst/rednote-mcp
home/mcp-servers/ifuryst/rednote-mcp
ifuryst avatar

rednote-mcp

byifuryst· 2 MCP servers

Installs

530

Stars

1.1k

Forks

175

Category

AI Agents & MCP

View on GitHub

TL;DR

小红书内容访问的MCP服务

How to install rednote-mcp?

ifuryst/rednote-mcp
$git clone https://github.com/ifuryst/rednote-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install rednote-mcp by running `git clone https://github.com/ifuryst/rednote-mcp`, then use it for the current task and follow its documentation at https://github.com/ifuryst/rednote-mcp.

Files · 1

View on GitHub
README.md
1# RedNote MCP
2 
3[![English](https://img.shields.io/badge/English-Click-yellow)](docs/README.en.md)
4[![简体中文](https://img.shields.io/badge/简体中文-点击查看-orange)](README.md)
5[![npm](https://img.shields.io/npm/v/rednote-mcp)](https://www.npmjs.com/package/rednote-mcp)
6 
7小红书内容访问的MCP服务
8 
9https://github.com/user-attachments/assets/06b2c67f-d9ed-4a30-8f1d-9743f3edaa3a
10 
11## 快速开始
12 
13开始前确保安装了 [playwright](https://github.com/microsoft/playwright) 环境:
14 
15```bash
16npx playwright install
17```
18 
19### NPM 全局安装
20 
21```bash
22# 全局安装
23npm install -g rednote-mcp
24 
25# 初始化登录,会自动记录cookie到 ~/.mcp/rednote/cookies.json
26rednote-mcp init
27```
28 
29### 从源码安装
30 
31```bash
32# 克隆项目
33git clone https://github.com/ifuryst/rednote-mcp.git
34cd rednote-mcp
35 
36# 安装依赖
37npm install
38 
39# 全局安装(可选,方便命令行调用)
40npm install -g .
41 
42# 或者直接运行,如初始化登录
43npm run dev -- init
44```
45 
46## 功能特性
47 
48- 认证管理(支持 Cookie 持久化)
49- 关键词搜索笔记
50- 命令行初始化工具
51- 通过 URL 访问笔记内容
52- [ ] 通过 URL 访问评论内容
53 
54## 使用说明
55 
56### 1. 初始化登录
57 
58首次使用需要先进行登录初始化:
59 
60```bash
61rednote-mcp init
62# 或者直接从源码run
63npm run dev -- init
64# 或者mcp-client里选择login
65```
66 
67执行此命令后:
68 
691. 会自动打开浏览器窗口
702. 跳转到小红书登录页面
713. 请手动完成登录操作
724. 登录成功后会自动保存 Cookie 到 `~/.mcp/rednote/cookies.json` 文件
73 
74### 2. 在 Cursor 中配置 MCP Server
75 
76在 Cursor 的 settings.json 中添加以下配置:
77 
78```json
79{
80 "mcpServers": {
81 "RedNote MCP": {
82 "command": "rednote-mcp",
83 "args": [
84 "--stdio"
85 ]
86 }
87 }
88}
89```
90 
91或者使用 npx 方式:
92 
93```json
94{
95 "mcpServers": {
96 "RedNote MCP": {
97 "command": "npx",
98 "args": [
99 "rednote-mcp",
100 "--stdio"
101 ]
102 }
103 }
104}
105```
106 
107配置说明:
108 
109- `command`: 可以是全局安装后的 `rednote-mcp` 命令,或使用 `npx` 直接运行
110- `args`: 必须包含 `--stdio` 参数以支持 Cursor 的通信方式
111 
112## 开发指南
113 
114### 环境要求
115 
116- Node.js >= 16
117- npm >= 7
118 
119### 开发流程
120 
121```bash
122# 安装依赖
123npm install
124 
125# 构建项目
126npm run build
127 
128# 开发模式运行
129npm run dev
130 
131# 运行测试
132npm test
133```
134 
135### 使用 MCP Inspector 进行调试
136 
137MCP Inspector 是一个用于调试 MCP 服务器的工具,可以帮助开发者检查和验证 MCP 服务器的行为。使用以下命令启动:
138 
139```bash
140npx @modelcontextprotocol/inspector npx rednote-mcp --stdio
141```
142 
143这个命令会:
144 
1451. 启动 MCP Inspector 工具
1462. 通过 Inspector 运行 rednote-mcp 服务
1473. 提供一个交互式界面来检查请求和响应
1484. 帮助调试和验证 MCP 协议的实现
149 
150## 注意事项
151 
1521. 首次使用必须执行 `init` 命令进行登录
1532. Cookie 文件包含敏感信息,避免泄露
1543. 建议定期更新 Cookie,避免失效
1554. 确保已正确安装 Node.js 环境
156 
157## 贡献指南
158 
1591. Fork 本仓库
1602. 创建你的特性分支 (`git checkout -b feature/AmazingFeature`)
1613. 提交你的改动 (`git commit -m 'Add some AmazingFeature'`)
1624. 推送到分支 (`git push origin feature/AmazingFeature`)
1635. 开启一个 Pull Request
164 
165## 许可证
166 
167MIT License - 详见 [LICENSE](LICENSE) 文件

Preview

ifuryst/rednote-mcpifuryst/rednote-mcp

# RedNote MCP

[![English](https://img.shields.io/badge/English-Click-yellow)](docs/README.en.md)

[![简体中文](https://img.shields.io/badge/简体中文-点击查看-orange)](README.md)

[![npm](https://img.shields.io/npm/v/rednote-mcp)](https://www.npmjs.com/package/rednote-mcp)

Repoifuryst/rednote-mcp
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedMay 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCPaimcp

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k