🕷️ MCP server para o Arachne — search, scrape, browser, vision, transcribe, RAG query. 9 tools. Roda como cliente HTTP contra a API do Arachne.
claude mcp add arachne-mcp -- python -m httpx{
"mcpServers": {
"arachne-mcp": {
"command": "python",
"args": ["-m", "httpx"],
"env": {
"ARACHNE_API_KEY": "<arachne_api_key>"
}
}
}
}ARACHNE_API_KEYMCP Servers overview
<!-- mcp-name: io.github.Samuelfmedeiros/arachne-mcp -->
# 🕷️ Arachne MCP Server
**9 MCP tools** para web scraping, browser automation, visão computacional, transcrição de áudio e RAG — tudo via API.
Conecta no [Arachne](https://arachne.seu.pet) como backend. Funciona com **Claude Desktop**, **Cursor**, **Codex CLI**, e qualquer cliente MCP.
## ✨ Tools
| Tool | O que faz | Ideal para |
|------|-----------|------------|
| `arachne_search` | Busca na web via DuckDuckGo | Pesquisa, coleta de informações |
| `arachne_scrape` | Extrai markdown limpo de URLs | Páginas estáticas, blogs, docs |
| `arachne_extract` | Extrai QUALQUER formato (áudio, vídeo, PDF, YouTube) | **Canivete suíço** |
| `arachne_browser_extract` | Navegador real com evasão Cloudflare/CAPTCHA | Sites que bloqueiam scraper |
| `arachne_browser_run` | Executa ações em navegador (click, type, login) | Automação de formulários |
| `arachne_query` | Pergunta pra sua base de conhecimento RAG | Chatbot com seus dados |
| `arachne_vision` | Analisa imagens: OCR, cores, faces, descrição AI | Extrair texto de fotos |
| `arachne_transcribe` | Transcreve áudio/vídeo/YouTube com Whisper | Podcast, reunião, vídeo |
| `arachne_capabilities` | Auto-descoberta de capacidades | Saber o que o Arachne faz |
## 🚀 Quick Start
### 1. Pegue uma API Key
Crie em **[arachne.seu.pet/dev](https://arachne.seu.pet/dev)** (plano Free: 500 req/mês).
### 2. Configure no Claude Desktop
```json
{
"mcpServers": {
"arachne": {
"command": "python3",
"args": ["-m", "arachne_mcp"],
"env": {
"ARACHNE_API_KEY": "sua_chave_aqui"
}
}
}
}
```
### 3. Ou teste direto
```bash
export ARACHNE_API_KEY="sua_chave"
python3 arachne_mcp.py
```
> Precisa de `httpx`: `pip install httpx`
## 📦 Como funciona
O MCP server é um **cliente HTTP** que chama a API pública do Arachne. Zero dependência de infra local — roda de qualquer lugar.
```
Seu agente AI → MCP stdio → arachne_mcp.py → HTTP → Arachne API → resultado
```
## 🔧 Exemplos
```python
# Via arachne-sdk (pip install arachne-sdk)
from arachne_sdk import Arachne
client = Arachne(api_key="sua_chave")
# Busca na web
results = client.search("preço iPhone 16 Brasil")
for r in results:
print(f"{r.title}: {r.url}")
# Extrair página
content = client.scrape("https://exemplo.com")
print(content[:500])
# Analisar imagem
vision = client.vision("https://exemplo.com/foto.jpg")
print(vision.ocr.text)
# Perguntar ao RAG
answer = client.query("Qual a diferença do Arachne pro Firecrawl?")
print(answer)
```
## 📊 Planos
| Plano | Preço | Requests/mês | Features |
|-------|-------|-------------|----------|
| **Free** | R$ 0 | 500 | search, scrape, jobs |
| **Pro** | R$ 49/mês | 10.000 | + browser, vision, transcribe, MCP |
| **Enterprise** | R$ 199/mês | 100.000 | + admin, export, suporte dedicado |
## 🏗️ Stack
- **Backend:** FastAPI + Crawl4AI + Whisper + Tesseract + SQLite
- **Engines:** Trafilatura → Crawl4AI SDK → Sidecar Docker → Camoufox
- **MCP Transport:** stdio (compatível com Claude Desktop, Cursor, Codex)
## 🔗 Links
- [Arachne Platform](https://arachne.seu.pet)
- [Developer Portal](https://arachne.seu.pet/dev)
- [API Docs](https://arachne.seu.pet/dev)
- [Python SDK (PyPI)](https://pypi.org/project/arachne-sdk/)
- [GitHub](https://github.com/Samuelfmedeiros/arachne-mcp)
---
🕷️ Built with the Arachne engine. Open source MCP server.
What people ask about arachne-mcp
What is Samuelfmedeiros/arachne-mcp?
+
Samuelfmedeiros/arachne-mcp is mcp servers for the Claude AI ecosystem. 🕷️ MCP server para o Arachne — search, scrape, browser, vision, transcribe, RAG query. 9 tools. Roda como cliente HTTP contra a API do Arachne. It has 0 GitHub stars and was last updated today.
How do I install arachne-mcp?
+
You can install arachne-mcp by cloning the repository (https://github.com/Samuelfmedeiros/arachne-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Samuelfmedeiros/arachne-mcp safe to use?
+
Samuelfmedeiros/arachne-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains Samuelfmedeiros/arachne-mcp?
+
Samuelfmedeiros/arachne-mcp is maintained by Samuelfmedeiros. The last recorded GitHub activity is from today, with 3 open issues.
Are there alternatives to arachne-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy arachne-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/samuelfmedeiros-arachne-mcp)<a href="https://claudewave.com/repo/samuelfmedeiros-arachne-mcp"><img src="https://claudewave.com/api/badge/samuelfmedeiros-arachne-mcp" alt="Featured on ClaudeWave: Samuelfmedeiros/arachne-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!