- Home
- MCP servers
- RedNote
RedNote
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"ethancod1ng-rednote-mcp-server": {
"command": "node",
"args": [
"/path/to/rednote-mcp-server/dist/index.js"
]
}
}
}You can access RedNote content and analytics through the MCP interface, enabling AI assistants to search, fetch notes, retrieve user data, and analyze content with consistent, scalable interactions.
How to use
You use an MCP client to connect to the RedNote MCP Server. Through this integration you can search XiaoHongShu notes, fetch detailed notes, retrieve information about authors, explore trending topics, and run analyses on content. Each tool is designed to be called by your assistant to perform specific tasks without exposing low-level APIs to end users.
How to install
Prerequisites: ensure you have Node.js and npm installed on your system.
-
Install dependencies in the project root.
-
Build the project.
-
Start the server.
Configuration and runtime startup
The server can be run as a local process or configured in an MCP client. A typical local runtime uses a standard node command to execute the built server. The following configuration example shows how to register the MCP server in a client configuration, mapping a short name to the runtime command.
Configuring the MCP client
{
"mcpServers": {
"rednote": {
"command": "node",
"args": ["/path/to/rednote-mcp-server/dist/index.js"]
}
}
}
Notes on running in production
For production use, ensure you follow security and data handling guidelines, respect rate limits, and enable caching to reduce external API calls. Start commands may vary if you choose a different deployment method, so adapt the runtime command accordingly while keeping the same MCP endpoint behavior.
Available tools
rednote_search_notes
Search XiaoHongShu notes by keyword with optional type, sort, and limit parameters.
rednote_get_note
Fetch details of a specific note by note_id with optional inclusion of comments.
rednote_get_user_notes
Retrieve notes created by a specific user with optional limit and cursor for pagination.
rednote_get_trending_topics
Get current popular topics with optional category and limit.
rednote_get_user_info
Obtain information about a user by user_id or username.
rednote_analyze_content
Analyze content text for sentiment, keywords, categories, or all analyses.