Server data from the Official MCP Registry
TerraDeed MCP server — x402 web scraping & structured extraction. Pay-per-call with USDC on Base.
TerraDeed MCP server — x402 web scraping & structured extraction. Pay-per-call with USDC on Base.
The TerraDeed MCP server implements x402-based web scraping with proper authentication via Ethereum private key signing. However, critical findings include exposure of the private key in environment configuration documentation, lack of input validation on URLs and schemas, and potential for financial loss due to transaction replay vulnerabilities. While the x402 payment protocol implementation is sophisticated, the security posture is undermined by these issues. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
3 files analyzed · 13 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: TERRADEED_PRIVATE_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-terradeed-terradeed-mcp-server": {
"env": {
"TERRADEED_PRIVATE_KEY": "your-terradeed-private-key-here"
},
"args": [
"-y",
"terradeed-mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
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
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.