/ Directory / Playground / jike-skill
● Community MidnightDarling ⚡ Instant

jike-skill

by MidnightDarling · MidnightDarling/jike-skill

Jike (即刻) social network client for AI agents — QR login, feed browsing, posts, comments, search, and full history export.

jike-skill is a Python client for the Jike (即刻) social network that works as both a pip package and a Claude Code skill. It supports QR code authentication, feed browsing, post/comment creation and deletion, user profiles, notifications, search, and complete post history export to Markdown with optional image downloading. Auto-refreshes tokens transparently.

Why use it

Key features

Live Demo

What it looks like in practice

jike-skill.replay ▶ ready
0/0

Install

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "jike-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ],
      "_inferred": true
    }
  }
}

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "jike-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "jike-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ],
      "_inferred": true
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "jike-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ],
      "_inferred": true
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "jike-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ]
    }
  ]
}

Continue uses an array of server objects rather than a map.

~/.config/zed/settings.json
{
  "context_servers": {
    "jike-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/MidnightDarling/jike-skill",
          "~/.claude/skills/jike-skill"
        ]
      }
    }
  }
}

Add to context_servers. Zed hot-reloads on save.

claude mcp add jike-skill -- git clone https://github.com/MidnightDarling/jike-skill ~/.claude/skills/jike-skill

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use jike-skill

How to export your entire Jike post history to Markdown

👤 Jike users who want to back up their content ⏱ ~15 min beginner

When to use: You want a local backup of all your Jike posts in a readable format.

Prerequisites
  • jike-skill installed — pip install jike-skill[qr] or copy to ~/.claude/skills/jike/
  • Active Jike account — Sign up at okjike.com
Flow
  1. Authenticate
    Log into Jike using QR code authentication.✓ Copied
    → QR code displayed, confirmation after scanning
  2. Export posts
    Export my entire Jike post history to Markdown files. Include images.✓ Copied
    → Progress updates, then confirmation with file paths

Outcome: Complete archive of your Jike posts in Markdown format with images saved locally.

Pitfalls
  • Large accounts may take a while to export — Be patient — the export handles pagination and rate limiting automatically
Combine with: filesystem

Browse your Jike feed and engage with posts using AI

👤 Jike users who want AI-assisted social browsing ⏱ ~10 min beginner

When to use: You want to catch up on your Jike feed and post thoughtful comments.

Prerequisites
  • jike-skill authenticated — Run QR login first
Flow
  1. Browse feed
    Show me the latest 10 posts from my Jike following feed.✓ Copied
    → List of posts with authors, content, and engagement counts
  2. Comment on a post
    Write a thoughtful comment on the third post about tech trends.✓ Copied
    → Comment posted confirmation

Outcome: Up to date on your Jike feed with meaningful interactions.

Pitfalls
  • Token expires during long sessions — The skill auto-refreshes tokens, but re-authenticate if you see persistent errors

Combinations

Pair with other MCPs for X10 leverage

jike-skill + filesystem

Export Jike content and organize it into topic-based folders

Export my Jike posts and organize them by topic into ~/jike-archive/.✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
login_qr none Authenticate with Jike via QR code 0
get_feed limit?: int Get posts from your following feed 0
create_post content: str Create a new Jike post 0
post_comment post_id: str, content: str Comment on a Jike post 0
export_history include_images?: bool Export complete post history to Markdown 0

Cost & Limits

What this costs to run

API quota
Subject to Jike's internal API rate limits
Tokens per call
200–500 tokens per operation
Monetary
Free
Tip
Use feed browsing for targeted reading instead of exporting everything.

Security

Permissions, secrets, blast radius

Credential storage: Session tokens stored locally after QR authentication. Tokens auto-refresh.
Data egress: Calls to Jike's web API (api.ruguoapp.com)

Troubleshooting

Common errors and fixes

QR code not displaying

Install the [qr] extra: pip install jike-skill[qr]. This adds QR rendering support.

Verify: pip install jike-skill[qr]
401 Unauthorized after session expires

The skill auto-refreshes tokens, but if persistent, re-authenticate with QR login.

Verify: Try the login flow again
API endpoint changed

Update to the latest version of jike-skill. Jike may have changed their API.

Verify: pip install --upgrade jike-skill

Alternatives

jike-skill vs others

AlternativeWhen to use it insteadTradeoff
fetch MCPYou just need to read public Jike content without account accessNo authentication, no posting, no feed — just raw page content

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills