Arachne MCP Server

πŸ•·οΈ 9 MCP tools for web scraping, browser automation, vision, transcription and RAG query

Documentation

πŸ•·οΈ Arachne MCP Server

🌐 English Β· πŸ‡§πŸ‡· PortuguΓͺs

49 MCP tools for web scraping, browser automation, computer vision, audio transcription, RAG, Social Sentiment Research, and Visual Regression Testing (VRT) β€” the Oito Olhos (Spider's Eight Eyes) β€” all through the Arachne API.

Backed by Arachne. Works with Claude Desktop, Cursor, Codex CLI, Hermes, and any MCP client.

✨ Tools (49)

πŸ” Web & Data

ToolWhat it doesBest for
arachne_searchWeb search via DuckDuckGoResearch, lead collection
arachne_scrapeClean markdown from URLsStatic pages, blogs, docs
arachne_extractExtracts ANY format (audio, video, PDF, YouTube)Swiss-army knife
arachne_browser_extractReal browser with Cloudflare/CAPTCHA evasionSites that block scrapers
arachne_browser_runBrowser actions (click, type, login)Form automation
arachne_screenshotScreenshot of a URL (full page or viewport)Visual evidence
arachne_recordRecords a screencast of a page (.webm)Interactions, demos
arachne_torrent_extractExtracts magnet links from BR torrent sitesTorrent acquisition
arachne_downloadUniversal download (URL, repo, PyPI, npm)Fetch any artifact
arachne_queryAsk your RAG knowledge baseChatbot with your data

πŸ” Social Sentiment Research

ToolWhat it doesBest for
arachne_social_researchSearches what people REALLY say (HN/Reddit/YouTube, last N days) + AI judge via local VLMHype vs reality, complaints, market sentiment

πŸ‘οΈ Vision & Audio

ToolWhat it doesBest for
arachne_visionImage analysis: OCR, colors, faces, AI descriptionText extraction from photos
arachne_screenshot_visionScreenshot + full vision pipelineVisual page inspection
arachne_pdf_visionExtracts images from PDF + vision analysisScanned PDFs
arachne_analyze_videoVideo metadata: colors, OCR, geometry, VQA, audioVideo understanding
arachne_transcribeAudio/video/YouTube transcription with WhisperPodcast, meeting, video

πŸ•·οΈ Oito Olhos β€” Visual Regression Testing (VRT)

ToolWhat it doesBest for
arachne_visual_snapshotCaptures URL β†’ creates baseline (1st time) or comparesIdempotent visual tests
arachne_visual_diffCompares with baseline β†’ diff + semantic verdictPost-deploy verification
arachne_visual_gatesDeterministic audit: overflow, text collision, JS errorsKey-free, no baseline
arachne_visual_reportTest suite β†’ HTML side-by-sideConsolidated review
arachne_visual_approvePromotes current β†’ new baselineAccept an expected change
arachne_visual_listLists baselines + statusMonitor what exists
arachne_visual_videoVideo VRT: records screencast + compares (animations)Hover, carousels, transitions
arachne_visual_video_reportVideo suite β†’ interactive HTML reportAnimation regression review

πŸ€– Desktop & Agentic

ToolWhat it doesBest for
arachne_desktopDesktop control (windows, type, key, click)OS automation
arachne_desktop_osDesktop agentic with VLM "eye" (screenshot + describe)See before acting
arachne_observeScreenshot + numbered clickable bounding boxesGUI agent navigation

πŸ“¦ GitHub / GitLab / Packages

ToolWhat it does
arachne_repo_downloadDownload GitHub repo as zip (branch/token)
arachne_repo_forkFork a GitHub repo
arachne_repo_forksList forks by stars
arachne_repo_indexDownload + index repo into RAG
arachne_releasesList GitHub releases with assets
arachne_release_downloadDownload a release asset
arachne_pypi_downloadDownload PyPI package (sdist/wheel)
arachne_npm_downloadDownload npm package tarball
arachne_gitlab_downloadDownload GitLab project archive

🧠 Code Knowledge Graph

ToolWhat it does
code_graphExplore code structure: stats, search, routes, files, deps
kg_contextRanked BFS code context (~2K tokens)
kg_communitiesCommunity detection (Leiden/greedy)
kg_god_nodesMost influential code entities (PageRank)
kg_watchGit watcher β€” incremental change detection

🧭 Utilities

ToolWhat it does
arachne_capabilitiesAuto-discover capabilities
arachne_pingHealth check
arachne_metricsServer metrics (CPU, RAM, disk)
arachne_planGoal analysis β†’ tool chain suggestion
arachne_calcSafe math calculator (AST-sandboxed)
arachne_format_converterUniversal converter (65+ formats)
arachne_sandbox_statusCheck ai-jail sandbox availability

VRT with local LLM: Oito Olhos uses pixel diff + DOM pairing + CLIP semantic triage + local VLM (Qwen2.5-VL via Douglas, Samuel mirror fallback) β€” classifying changes as regression | expected | noise, with a fix suggestion (CORRECAO:) when it detects a bug. No third-party API key for the verdict.

Social Research with local AI judge: arachne_social_research searches Hacker News (Algolia), Reddit (JSON API + browser_agent/Camoufox fallback) and YouTube (yt-dlp) in the last N days, scores by real engagement (upvotes/points/views), and synthesizes a hype vs reality report with a local VLM (no third-party API keys).

πŸš€ Quick Start

1. Get an API key

Create one at arachne.seu.pet/dev (Free plan: 500 req/month).

2. Configure in Claude Desktop

{
  "mcpServers": {
    "arachne": {
      "command": "python3",
      "args": ["-m", "arachne_mcp"],
      "env": {
        "ARACHNE_API_KEY": "arn_your_key_here",
        "ARACHNE_API_URL": "https://arachne.seu.pet"
      }
    }
  }
}

3. Or run directly

pip install arachne-mcp
export ARACHNE_API_KEY="arn_your_key_here"
python3 -m arachne_mcp

πŸ“‘ Architecture

The MCP server is a thin proxy: it forwards each tool call to the Arachne API (POST /api/mcp/proxy), which executes the tool server-side and returns the result. This keeps the client light (only httpx), while all heavy work β€” browser, VLM, vision, RAG β€” runs on the Arachne server.

Claude Desktop / Cursor / Codex
        β”‚  MCP (stdio)
        β–Ό
arachne-mcp (thin proxy, 49 tools)
        β”‚  HTTP + X-API-Key
        β–Ό
Arachne API (arachne.seu.pet) β†’ executes tool β†’ returns JSON

πŸ” Security

  • API key auth: every request carries X-API-Key (create at /dev)
  • Rate limits enforced server-side per plan
  • No code runs client-side β€” the proxy only forwards arguments