
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
tweet-fetcher-mcp
Advanced tools
Paid MCP, agents pay $0.001 USDC per tweet fetch via spawnpay-paywall
Demo MCP server showing spawnpay-paywall in action. One tool: fetch_tweet. Each call charges the agent $0.001 USDC, sends it to the author's spawnpay wallet.
To prove an MCP author can charge per call without forcing users to handle credit cards. ~30 lines of real logic + 1 paywall wrapper.
{
"mcpServers": {
"spawnpay": { "command": "npx", "args": ["-y", "spawnpay-mcp"] },
"tweet-fetcher": {
"command": "node",
"args": ["/path/to/tweet-fetcher-mcp/src/index.js"],
"env": { "SPAWNPAY_API_KEY": "spk_caller_key_here" }
}
}
}
Then:
Use fetch_tweet on https://x.com/elonmusk/status/...
Each call costs the caller $0.001. The author keeps $0.000995. Spawnpay takes 0.5%.
import { paywall } from 'spawnpay-paywall';
const fetchTweet = paywall(
{ price: 0.001, vendor: 'SP_yourCode', description: 'fetch_tweet' },
fetchTweetImpl,
);
That's the whole monetization layer. Two lines added to your existing handler.
FAQs
Paid MCP, agents pay $0.001 USDC per tweet fetch via spawnpay-paywall
We found that tweet-fetcher-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.