10 integrations

Set up StripFeed in 30 seconds

Copy-paste setup for your AI coding assistant, agent framework, or programming language. One config, instant web access.

Need an API key? Sign up free to get one. The free plan includes 200 requests/month.

AI Coding Assistants

Add StripFeed as an MCP server. Your assistant gets a fetch_url tool for reading any web page as clean Markdown.

Claude Code

Run this in your terminal to add the MCP server.

Full guide
Install
claude mcp add stripfeed -- npx -y @stripfeed/mcp-server
Set your API key
export STRIPFEED_API_KEY=sf_live_your_key

Optional: Add to your CLAUDE.md so Claude always prefers StripFeed for web access.

## Web Access

When you need to read web pages or documentation, use the StripFeed MCP
tool (fetch_url) to get clean Markdown instead of raw HTML.

Cursor

Add to .cursor/mcp.json in your project root.

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

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json

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

Claude Desktop

Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\)

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

AI Agents

Give your AI agents web access. Fetch any URL as clean Markdown, saving 60-80% on tokens.

OpenClaw

Install the StripFeed skill from ClawHub.

Full guide
Install
clawhub install stripfeed
Add to ~/.openclaw/openclaw.json
{
  "skills": {
    "entries": {
      "stripfeed": {
        "enabled": true,
        "env": {
          "STRIPFEED_API_KEY": "sf_live_your_key"
        }
      }
    }
  }
}

Gemini CLI

Use the REST API directly. Pipe the output into your Gemini context.

curl "https://www.stripfeed.dev/api/v1/fetch?url=https://example.com" \
  -H "Authorization: Bearer sf_live_your_key"

Native MCP support coming soon. For now, use the API directly or call via shell commands.

OpenAI Codex CLI

Use the REST API directly. Codex can execute shell commands with the output.

curl "https://www.stripfeed.dev/api/v1/fetch?url=https://example.com" \
  -H "Authorization: Bearer sf_live_your_key"

Native MCP support coming soon. For now, use the API directly or call via shell commands.

SDKs & API

Use StripFeed from any language. TypeScript and Python SDKs with full type safety, or call the REST API directly.

TypeScript SDK

Install from npm: npm install stripfeed

Full guide
import StripFeed from "stripfeed";

const sf = new StripFeed("sf_live_your_key");
const result = await sf.fetch("https://example.com");
console.log(result.markdown);

Python SDK

Install from PyPI: pip install stripfeed

Full guide
from stripfeed import StripFeed

sf = StripFeed("sf_live_your_key")
result = sf.fetch("https://example.com")
print(result["markdown"])

cURL / REST API

Works with any language that can make HTTP requests.

API docs
curl "https://www.stripfeed.dev/api/v1/fetch?url=https://example.com" \
  -H "Authorization: Bearer sf_live_your_key"

Don't see your tool?

StripFeed works with any tool that can make HTTP requests. Check the full API docs or let us know what integration you need.