/ Directory / Playground / EdgeKnowledge_Skill
● Community 1596941391qq ⚡ Instant

EdgeKnowledge_Skill

by 1596941391qq · 1596941391qq/EdgeKnowledge_Skill

AI-powered knowledge mining from online forums — deep crawls with browser automation, visual analysis, and structured reports.

EdgeKnowledge_Skill is a Claude Code skill that intelligently crawls online forums and communities using browser automation with anti-detection measures. It features three-tier routing (local Playwright, agent-browser, Gemini API), V2 Hunter Mode with value signal detection and resource downloading, and generates structured Markdown reports analyzing trends, power users, and resources.

Why use it

Key features

Live Demo

What it looks like in practice

edgeknowledge-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": {
    "edgeknowledge-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/1596941391qq/EdgeKnowledge_Skill",
        "~/.claude/skills/EdgeKnowledge_Skill"
      ],
      "_inferred": true
    }
  }
}

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

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

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

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

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

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

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

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

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

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

Add to context_servers. Zed hot-reloads on save.

claude mcp add edgeknowledge-skill -- git clone https://github.com/1596941391qq/EdgeKnowledge_Skill ~/.claude/skills/EdgeKnowledge_Skill

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

Use Cases

Real-world ways to use EdgeKnowledge_Skill

How to research a niche topic across multiple forums

👤 Researchers and analysts gathering competitive intelligence ⏱ ~30 min intermediate

When to use: You need to understand what a community is saying about a specific topic.

Prerequisites
  • EdgeKnowledge skill installed — chmod +x install.sh && ./install.sh
  • Claude Code CLI and Python 3.8+ — Install both before running the installer
Flow
  1. Define your research target
    Research what the indie hacker community on Reddit is saying about AI-powered SaaS tools. Focus on pricing strategies and customer acquisition.✓ Copied
    → Skill identifies relevant subreddits and begins crawling
  2. Review the report
    Generate a structured report from the crawled data. Highlight the top strategies and most-mentioned tools.✓ Copied
    → Markdown report with categorized findings and source links

Outcome: A structured research report with actionable insights from community discussions.

Pitfalls
  • Crawling too aggressively triggers rate limits — The built-in anti-detection handles this, but avoid targeting too many communities at once
Combine with: filesystem

Combinations

Pair with other MCPs for X10 leverage

edgeknowledge-skill + filesystem

Save research reports and downloaded resources to organized folders

Research the latest trends in the SEO community and save the report to ~/research/seo-trends.md.✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
Forum crawler target forums, search terms Crawl forums for content matching your research criteria 0 (local) or API costs for Gemini tier
Report generator crawled data Generate a structured analysis report from crawled data 0

Cost & Limits

What this costs to run

API quota
Depends on routing tier — local Playwright is free, Gemini API has its own quotas
Tokens per call
1000–5000 tokens per research session
Monetary
Free for local browsing; Gemini API tier may have costs
Tip
Use the local Playwright tier for most tasks — only fall back to Gemini for CAPTCHA-heavy sites.

Security

Permissions, secrets, blast radius

Credential storage: Forum credentials stored locally for session reuse — keep in env vars, not in skill config
Data egress: Connects to target forums via browser. Gemini tier routes through Google API.

Troubleshooting

Common errors and fixes

Browser fails to launch

Ensure Playwright browsers are installed: npx playwright install chromium. Check that Python 3.8+ is available.

Verify: python3 --version && npx playwright --version
CAPTCHA blocking access

The skill includes CAPTCHA bypass, but some sites may still block. Try again later or use a different routing tier.

Empty results from crawl

The target forum may require login. Provide credentials or log in manually first.

Verify: Try accessing the forum URL in a regular browser

Alternatives

EdgeKnowledge_Skill vs others

AlternativeWhen to use it insteadTradeoff
fetch MCPYou just need to read a specific forum page without deep crawlingNo anti-detection, no deep crawling, but simpler and faster

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills