list-feeds-skill

Retrieve Xiaohongshu homepage feed lists via a local MCP HTTP API.

2|Updated Feb 18, 2026
One-click install
npx skills add https://github.com/imsatoshi/bot_article --skill list-feeds-skill-imsatoshi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: list-feeds-skill
Source: https://github.com/imsatoshi/bot_article/tree/main/skills/xiaohongshu/skills/list-feeds-skill
Command: npx skills add https://github.com/imsatoshi/bot_article --skill list-feeds-skill-imsatoshi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

It helps you quickly retrieve the current feed list from Xiaohongshu’s homepage without manually browsing the site, enabling faster downstream analysis and automation.

Core Features & Use Cases

  • Homepage feed listing: Pulls the feed items by calling the list_feeds method exposed through a local Xiaohongshu MCP HTTP API.
  • Structured output retrieval: Returns the parsed JSON feed list so it can be consumed by other tools or workflows.
  • Use Case: When you want to monitor trending topics or collect feed items for content research, you can fetch the latest homepage feeds programmatically and process them.

Quick Start

Run the skill to call the local Xiaohongshu MCP endpoint and return the parsed list of homepage feeds.

Frequently Asked Questions about list-feeds-skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch Xiaohongshu homepage feeds via API for content monitoring?

To fetch Xiaohongshu homepage feeds via API, this skill invokes a local MCP HTTP API method to retrieve the current feed list. It performs a JSON-RPC call to tools/call with name=list_feeds and parses the returned content text as JSON for downstream automation workflows.

Do I need a local MCP endpoint URL to retrieve Xiaohongshu feed lists?

Yes, you need a local MCP endpoint URL configured as XIAOHONGSHU_MCP_URL to retrieve Xiaohongshu feed lists. It defaults to http://127.0.0.1:18060/mcp if not specified, serving as the target for the JSON-RPC call to fetch homepage feed items.

How does JSON-RPC data ingestion work for Xiaohongshu feeds?

JSON-RPC data ingestion for Xiaohongshu feeds works by sending a tools/call request with name=list_feeds to the configured MCP HTTP API endpoint. The skill then parses the returned content text as structured JSON, enabling ingestion pipelines to consume up-to-date feed items.

Can I use this skill to build an automation workflow for monitoring trending content?

Yes, you can use this skill to build an automation workflow for monitoring trending content. It programmatically pulls the latest Xiaohongshu homepage feed items and returns parsed JSON output that can be directly consumed by other tools in your content research pipeline.

What are the limitations of using a local MCP HTTP API for retrieving Xiaohongshu feeds?

A limitation of using a local MCP HTTP API for retrieving Xiaohongshu feeds is the dependency on a running local server at the specified endpoint URL. If the MCP service is down or unreachable, the JSON-RPC call will fail to return the parsed JSON feed list.