|
| 1 | +{ |
| 2 | + "display_name": "RedNote MCP", |
| 3 | + "license": "MIT License", |
| 4 | + "tags": [ |
| 5 | + "xiaohongshu", |
| 6 | + "social media", |
| 7 | + "content access", |
| 8 | + "MCP", |
| 9 | + "Chinese", |
| 10 | + "Cursor", |
| 11 | + "Node.js" |
| 12 | + ], |
| 13 | + "installations": { |
| 14 | + "npm": { |
| 15 | + "type": "npm", |
| 16 | + "command": "npx", |
| 17 | + "args": [ |
| 18 | + "rednote-mcp", |
| 19 | + "--stdio" |
| 20 | + ], |
| 21 | + "description": "Using npx without global installation" |
| 22 | + } |
| 23 | + }, |
| 24 | + "examples": [ |
| 25 | + { |
| 26 | + "title": "", |
| 27 | + "description": "", |
| 28 | + "prompt": "Search for notes about 'travel photography' on Xiaohongshu" |
| 29 | + }, |
| 30 | + { |
| 31 | + "title": "", |
| 32 | + "description": "", |
| 33 | + "prompt": "Find popular makeup tutorials on Xiaohongshu" |
| 34 | + }, |
| 35 | + { |
| 36 | + "title": "", |
| 37 | + "description": "", |
| 38 | + "prompt": "Get the content of this Xiaohongshu note: https://www.xiaohongshu.com/explore/example-note-id" |
| 39 | + }, |
| 40 | + { |
| 41 | + "title": "", |
| 42 | + "description": "", |
| 43 | + "prompt": "Search for food recommendations in Shanghai on Xiaohongshu" |
| 44 | + }, |
| 45 | + { |
| 46 | + "title": "", |
| 47 | + "description": "", |
| 48 | + "prompt": "Find fashion trends for summer 2023 on Xiaohongshu" |
| 49 | + }, |
| 50 | + { |
| 51 | + "title": "", |
| 52 | + "description": "", |
| 53 | + "prompt": "Get the latest skincare product reviews on Xiaohongshu" |
| 54 | + } |
| 55 | + ], |
| 56 | + "name": "rednote-mcp", |
| 57 | + "repository": { |
| 58 | + "type": "git", |
| 59 | + "url": "https://github.com/iFurySt/RedNote-MCP" |
| 60 | + }, |
| 61 | + "homepage": "https://github.com/iFurySt/RedNote-MCP", |
| 62 | + "author": { |
| 63 | + "name": "iFurySt" |
| 64 | + }, |
| 65 | + "description": "https://github.com/user-attachments/assets/06b2c67f-d9ed-4a30-8f1d-9743f3edaa3a", |
| 66 | + "categories": [ |
| 67 | + "Productivity" |
| 68 | + ], |
| 69 | + "tools": [ |
| 70 | + { |
| 71 | + "name": "search_notes", |
| 72 | + "description": "根据关键词搜索笔记", |
| 73 | + "inputSchema": { |
| 74 | + "type": "object", |
| 75 | + "properties": { |
| 76 | + "keywords": { |
| 77 | + "type": "string", |
| 78 | + "description": "搜索关键词" |
| 79 | + }, |
| 80 | + "limit": { |
| 81 | + "type": "number", |
| 82 | + "description": "返回结果数量限制" |
| 83 | + } |
| 84 | + }, |
| 85 | + "required": [ |
| 86 | + "keywords" |
| 87 | + ], |
| 88 | + "additionalProperties": false, |
| 89 | + "$schema": "http://json-schema.org/draft-07/schema#" |
| 90 | + } |
| 91 | + }, |
| 92 | + { |
| 93 | + "name": "get_note_content", |
| 94 | + "description": "获取笔记内容", |
| 95 | + "inputSchema": { |
| 96 | + "type": "object", |
| 97 | + "properties": { |
| 98 | + "url": { |
| 99 | + "type": "string", |
| 100 | + "description": "笔记 URL" |
| 101 | + } |
| 102 | + }, |
| 103 | + "required": [ |
| 104 | + "url" |
| 105 | + ], |
| 106 | + "additionalProperties": false, |
| 107 | + "$schema": "http://json-schema.org/draft-07/schema#" |
| 108 | + } |
| 109 | + }, |
| 110 | + { |
| 111 | + "name": "get_note_comments", |
| 112 | + "description": "获取笔记评论", |
| 113 | + "inputSchema": { |
| 114 | + "type": "object", |
| 115 | + "properties": { |
| 116 | + "url": { |
| 117 | + "type": "string", |
| 118 | + "description": "笔记 URL" |
| 119 | + } |
| 120 | + }, |
| 121 | + "required": [ |
| 122 | + "url" |
| 123 | + ], |
| 124 | + "additionalProperties": false, |
| 125 | + "$schema": "http://json-schema.org/draft-07/schema#" |
| 126 | + } |
| 127 | + }, |
| 128 | + { |
| 129 | + "name": "login", |
| 130 | + "description": "登录小红书账号", |
| 131 | + "inputSchema": { |
| 132 | + "type": "object", |
| 133 | + "properties": {}, |
| 134 | + "additionalProperties": false, |
| 135 | + "$schema": "http://json-schema.org/draft-07/schema#" |
| 136 | + } |
| 137 | + } |
| 138 | + ], |
| 139 | + "prompts": [], |
| 140 | + "resources": [], |
| 141 | + "is_official": false |
| 142 | +} |
0 commit comments