npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@slim-protocol/mcp-server

v1.0.0

Published

MCP server for fetching web content in SLIM format - optimized for AI comprehension

Readme

SLIM MCP Server

Make Claude read the web in AI-native format

MCP (Model Context Protocol) server that allows Claude to fetch web content in SLIM format - optimized for AI comprehension with ~90% token reduction.

Quick Start

1. Install

npm install -g @slim-protocol/mcp-server
# or use npx directly (no install needed)

2. Configure Claude Desktop

Add to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "slim": {
      "command": "npx",
      "args": ["@slim-protocol/mcp-server"]
    }
  }
}

3. Restart Claude Desktop

That's it! Claude can now read web pages.

Usage

Just ask Claude to read any URL:

"Read this article and summarize it: https://example.com/article"

"What are the key points in this documentation: https://docs.example.com"

"Analyze this YouTube video: https://youtube.com/watch?v=..."

"What's the discussion about in this Reddit thread: https://reddit.com/r/..."

Claude will automatically use the SLIM tools to fetch and understand the content.

Tools

slim_fetch

Fetch web content in SLIM format.

Input:

  • url (string, required): The URL to fetch

Example:

Claude uses slim_fetch with url="https://en.wikipedia.org/wiki/Artificial_intelligence"

slim_fetch_with_options

Fetch with advanced options.

Input:

  • url (string, required): The URL to fetch
  • includeImages (boolean, optional): Include image metadata (default: true)
  • includeVideos (boolean, optional): Include video metadata (default: true)

Supported Content

| Platform | Content Type | |----------|-------------| | Websites | Articles, blogs, documentation | | YouTube | Video metadata + transcripts | | Reddit | Posts, comments, threads | | Bluesky | Posts, profiles | | Any URL | Generic web content |

What is SLIM?

SLIM (Slim Web Representation) is an AI-native content format with hierarchical levels:

  • L1: Identity (title, type, author, date)
  • L3: Structure (sections, headings, navigation)
  • L5: Key Points (insights, topics, summary)
  • L7: Full Content (complete text)

This structure allows Claude to understand content efficiently without processing raw HTML, CSS, and JavaScript.

Configuration

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | SWR_PROXY_URL | https://swrproxy.frux.pro | SLIM proxy URL | | SWR_TIMEOUT_MS | 30000 | Request timeout in ms | | DEBUG | false | Enable debug logging |

Custom Proxy

{
  "mcpServers": {
    "slim": {
      "command": "npx",
      "args": ["@slim-protocol/mcp-server"],
      "env": {
        "SWR_PROXY_URL": "https://my-proxy.example.com",
        "DEBUG": "true"
      }
    }
  }
}

Development

# Clone
git clone https://github.com/slim-protocol/mcp-server
cd mcp-server

# Install
npm install

# Run in dev mode
npm run dev

# Build
npm run build

# Test
npm test

Troubleshooting

"Tool not available"

  1. Make sure Claude Desktop is restarted after config change
  2. Check config file location and JSON syntax
  3. Try running manually: npx @slim-protocol/mcp-server

"Request timed out"

Some pages are slow to load. Try:

  1. Using a different URL
  2. Increasing timeout via SWR_TIMEOUT_MS

"Proxy error"

  1. Check internet connection
  2. Verify proxy URL is correct
  3. Try the URL in browser first

License

MIT

Links