TerraDeed MCP server — x402 web scraping & structured extraction. Pay-per-call with USDC on Base.
MCPpedia last refreshed this data
io.github.terradeed/terradeed-mcp-server is an MCP server that TerraDeed MCP server — x402 web scraping & structured extraction. Pay-per-call with USDC on Base. Its tool list has not been published yet over stdio, requires no API key, and scores 85/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-terradeed-terradeed-mcp-server": {
"args": [
"-y",
"terradeed-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
x402-powered web scraping and structured data extraction for AI agents.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'terradeed-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked terradeed-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser
Chrome DevTools for coding agents
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server paired with a browser extension that enables AI agents to control the user's browser.
MCP Security Weekly
Get CVE alerts and security updates for io.github.terradeed/terradeed-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
x402-powered web scraping and structured data extraction for AI agents.
This MCP server connects your AI agent to the TerraDeed Scrape API, enabling:
Payments are handled transparently via the x402 protocol on Base mainnet using USDC.
TERRADEED_PRIVATE_KEY=0x... npx terradeed-mcp-server
npm install -g terradeed-mcp-server
TERRADEED_PRIVATE_KEY=0x... terradeed-mcp-server
| Variable | Required | Description |
|---|---|---|
TERRADEED_PRIVATE_KEY | Yes | Ethereum private key for signing x402 payments. Must hold USDC on Base mainnet. |
terradeed_scrape_urlScrape any public URL and return clean markdown.
Cost: $0.01 USDC per call
{
"url": "https://example.com",
"render_js": false
}
terradeed_extract_structuredExtract structured JSON data using a schema.
Cost: $0.05 USDC per call
{
"url": "https://example.com",
"schema": {
"type": "object",
"properties": {
"title": { "type": "string" },
"price": { "type": "number" }
}
},
"instructions": "Extract the product title and price"
}
terradeed_check_walletCheck USDC balance on Base mainnet. Free.
{
"address": "0x..."
}
Add to your MCP client config (e.g., Claude Desktop, Cursor):
{
"mcpServers": {
"terradeed": {
"command": "npx",
"args": ["terradeed-mcp-server"],
"env": {
"TERRADEED_PRIVATE_KEY": "your-private-key"
}
}
}
}
MIT