SPB Git

spb/tendril Public

Tendril — web ingestion platform (scrape/crawl/map/search) on macOS Apple Silicon: WebKit fidelity, authenticated pages, deterministic testable extraction. A self-hosted Firecrawl alternative.

JavaScript 82.6% TypeScript 11.8% HTML 5.3%
583 B · 19 lines json
Raw Blame History
1{2  "name": "tendril-mcp",3  "version": "0.1.0",4  "private": true,5  "type": "module",6  "description": "Model Context Protocol server for Tendril — gives an AI agent scrape/map tools over the Tendril API",7  "bin": { "tendril-mcp": "dist/tendril-mcp.mjs" },8  "scripts": {9    "build": "esbuild src/index.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/tendril-mcp.mjs --banner:js=\"#!/usr/bin/env node\""10  },11  "dependencies": {12    "@modelcontextprotocol/sdk": "^1.12.0",13    "zod": "^3.24.1"14  },15  "devDependencies": {16    "esbuild": "^0.24.0"17  }18}19