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.
Add StripFeed as an MCP server. Your assistant gets a fetch_url tool for reading any web page as clean Markdown.
Run this in your terminal to add the MCP server.
claude mcp add stripfeed -- npx -y @stripfeed/mcp-server
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.
Add to .cursor/mcp.json in your project root.
{
"mcpServers": {
"stripfeed": {
"command": "npx",
"args": ["-y", "@stripfeed/mcp-server"],
"env": {
"STRIPFEED_API_KEY": "sf_live_your_key"
}
}
}
}Add to ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"stripfeed": {
"command": "npx",
"args": ["-y", "@stripfeed/mcp-server"],
"env": {
"STRIPFEED_API_KEY": "sf_live_your_key"
}
}
}
}Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\)
{
"mcpServers": {
"stripfeed": {
"command": "npx",
"args": ["-y", "@stripfeed/mcp-server"],
"env": {
"STRIPFEED_API_KEY": "sf_live_your_key"
}
}
}
}Give your AI agents web access. Fetch any URL as clean Markdown, saving 60-80% on tokens.
Install the StripFeed skill from ClawHub.
clawhub install stripfeed
{
"skills": {
"entries": {
"stripfeed": {
"enabled": true,
"env": {
"STRIPFEED_API_KEY": "sf_live_your_key"
}
}
}
}
}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.
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.
Use StripFeed from any language. TypeScript and Python SDKs with full type safety, or call the REST API directly.
Install from npm: npm install stripfeed
import StripFeed from "stripfeed";
const sf = new StripFeed("sf_live_your_key");
const result = await sf.fetch("https://example.com");
console.log(result.markdown);Install from PyPI: pip install stripfeed
from stripfeed import StripFeed
sf = StripFeed("sf_live_your_key")
result = sf.fetch("https://example.com")
print(result["markdown"])Works with any language that can make HTTP requests.
curl "https://www.stripfeed.dev/api/v1/fetch?url=https://example.com" \ -H "Authorization: Bearer sf_live_your_key"
StripFeed works with any tool that can make HTTP requests. Check the full API docs or let us know what integration you need.