drio
Open app

Rednote

Source

Catalog onlyCatalog onlyDocker

Overview

rednote_mcp is an MCP Server designed for the Rednote platform (xiaohongshu), enabling various operations to enhance user experience.

To use rednote_mcp, set up the server by following the installation instructions provided in the GitHub repository, and configure it according to your needs.

  • Supports multiple operations for the Rednote platform. - Built with Python, ensuring flexibility and ease of use. - Open-source under the Apache-2.0 license, allowing for community contributions.
  1. Integrating Rednote functionalities into custom applications.
  2. Automating tasks related to content management on the Rednote platform.
  3. Enhancing user interactions through custom server operations.

Add to your AI client

Use these steps to connect Rednote in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "rednote-kojima": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "rm",
        "wuzufeng/rednote_mcp"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "rednote-kojima": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "rm",
        "wuzufeng/rednote_mcp"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "rednote-kojima": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "rm",
        "wuzufeng/rednote_mcp"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "rednote-kojima": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "rm",
        "wuzufeng/rednote_mcp"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "rednote-kojima": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "rm",
        "wuzufeng/rednote_mcp"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "rednote-kojima": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "rm",
        "wuzufeng/rednote_mcp"
      ]
    }
  }
}

FAQ

What programming language is rednote_mcp built with?

rednote_mcp is built using Python.

Is rednote_mcp open-source?

Yes! rednote_mcp is open-source and available under the Apache-2.0 license.

How can I contribute to rednote_mcp?

You can contribute by submitting issues or pull requests on the GitHub repository.