MCP server that converts any URL to clean, token-efficient Markdown for AI agents. Strips ads, navigation, and scripts. Supports CSS selectors, batch processing (10 URLs), and token counting.
Overview
StripFeed MCP Server
Convert any URL to clean, token-efficient Markdown directly from Claude Code, Cursor, Windsurf, or any MCP-compatible client.
Features
- Clean Markdown - Strips ads, navigation, scripts, and noise from any URL
- Token counting - Know exactly how many tokens you saved
- CSS selectors - Extract specific elements with
selectorparameter - Batch processing - Fetch up to 10 URLs in parallel
- Smart caching - 1-hour default TTL, configurable up to 24h
- Cost tracking - Track savings per AI model
Tools
fetch_url- Convert a single URL to Markdownbatch_fetch- Fetch up to 10 URLs in parallel
Setup
# Claude Code
claude mcp add stripfeed -- npx -y @stripfeed/mcp-server
export STRIPFEED_API_KEY=sf_live_your_key
Links
- Documentation
- npm
- TypeScript SDK
- Python SDK
Pricing
- Free: 200 requests/month
- Pro: $19/month for 100K requests
- Enterprise: Custom
Server Config
{
"mcpServers": {
"stripfeed": {
"command": "npx",
"args": [
"-y",
"@stripfeed/mcp-server"
],
"env": {
"STRIPFEED_API_KEY": "<YOUR_API_KEY>"
}
}
}
}