/ 디렉터리 / 플레이그라운드 / jike-skill
● 커뮤니티 MidnightDarling ⚡ 바로 사용

jike-skill

제작: 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.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

jike-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/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
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.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는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "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
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

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

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

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

context_servers에 추가. 저장 시 Zed가 핫 리로드.

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

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: jike-skill

How to export your entire Jike post history to Markdown

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

언제 쓸까: You want a local backup of all your Jike posts in a readable format.

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

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

함정
  • Large accounts may take a while to export — Be patient — the export handles pagination and rate limiting automatically
함께 쓰기: filesystem

Browse your Jike feed and engage with posts using AI

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

언제 쓸까: You want to catch up on your Jike feed and post thoughtful comments.

사전 조건
  • jike-skill authenticated — Run QR login first
흐름
  1. Browse feed
    Show me the latest 10 posts from my Jike following feed.✓ 복사됨
    → 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.✓ 복사됨
    → Comment posted confirmation

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

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

조합

다른 MCP와 조합해 10배 효율

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/.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
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

비용 및 제한

운영 비용

API 쿼터
Subject to Jike's internal API rate limits
호출당 토큰
200–500 tokens per operation
금액
Free
Use feed browsing for targeted reading instead of exporting everything.

보안

권한, 시크릿, 파급범위

자격 증명 저장: Session tokens stored locally after QR authentication. Tokens auto-refresh.
데이터 외부 송신: Calls to Jike's web API (api.ruguoapp.com)

문제 해결

자주 발생하는 오류와 해결

QR code not displaying

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

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

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

확인: Try the login flow again
API endpoint changed

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

확인: pip install --upgrade jike-skill

대안

jike-skill 다른 것과 비교

대안언제 쓰나단점/장점
fetch MCPYou just need to read public Jike content without account accessNo authentication, no posting, no feed — just raw page content

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기