MCP Hub
Back to servers

stripfeed-mcp-server

Converts any URL to clean, token-efficient Markdown for AI agents. Strips ads, navigation, and scripts. Supports CSS selectors, batch processing (10 URLs), token counting, and smart caching.

glama
Forks
1
Updated
Mar 1, 2026

StripFeed MCP Server

StripFeed MCP Server

MCP server for StripFeed - convert any URL to clean, token-efficient Markdown.

Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.

Setup

1. Get your API key

Sign up at stripfeed.dev and create an API key.

2. Install

Claude Code

claude mcp add stripfeed -- npx -y @stripfeed/mcp-server

Then set your API key:

export STRIPFEED_API_KEY=sf_live_your_key

Or add it to your shell profile (~/.zshrc, ~/.bashrc).

Cursor / VS Code

Add to your MCP settings (.cursor/mcp.json or VS Code MCP config):

{
  "mcpServers": {
    "stripfeed": {
      "command": "npx",
      "args": ["-y", "@stripfeed/mcp-server"],
      "env": {
        "STRIPFEED_API_KEY": "sf_live_your_key"
      }
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "stripfeed": {
      "command": "npx",
      "args": ["-y", "@stripfeed/mcp-server"],
      "env": {
        "STRIPFEED_API_KEY": "sf_live_your_key"
      }
    }
  }
}

Tools

fetch_url

Convert a single URL to clean Markdown.

Parameters:

ParameterTypeRequiredDescription
urlstringYesURL to fetch and convert
selectorstringNoCSS selector to extract specific elements
modelstringNoAI model ID for cost tracking
cachebooleanNoSet to false to bypass cache
ttlnumberNoCache TTL in seconds (default 3600, max 86400)

Example usage in Claude Code:

"Fetch https://react.dev/learn and summarize the key concepts"

"Get the pricing table from https://stripe.com/pricing using selector '.pricing-table'"

batch_fetch

Fetch multiple URLs in parallel (up to 10).

Parameters:

ParameterTypeRequiredDescription
urlsstring[]YesArray of URLs to fetch (1-10)
modelstringNoAI model ID for cost tracking

Example usage in Claude Code:

"Fetch the React, Vue, and Svelte docs and compare their approaches to state management"

Pricing

The MCP server uses your StripFeed API key. Usage counts toward your plan limits:

  • Free: 200 requests/month, 1 API key
  • Pro: 100K requests/month, unlimited keys ($19/mo)
  • Enterprise: Unlimited

Links

License

MIT

Reviews

No reviews yet

Sign in to write a review