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

@dannyboy2042/freebird-mcp

v1.5.1

Published

πŸ¦… Free web search MCP server - soar through the web without API keys. Just add 'use freebird' to any prompt.

Readme

πŸ¦… Freebird MCP πŸ¦…

"Cause I'm as free as a bird now, and this bird you cannot change" 🎸

Free web search for AI assistants. No API keys. No limits. Just soar.

✨ Features

  • πŸ”“ No API Keys Required - Truly free, no strings attached
  • πŸ€– Smart Auto-Detection - Automatically chooses the right search type
  • πŸ” Multiple Search Types - Web, news, images, and videos
  • πŸš€ Simple Integration - Just add "use freebird" to any prompt
  • πŸ“¦ Zero Config - Works out of the box with npx

πŸš€ Quick Start

Note for Claude Code users: You already have excellent web search built-in! Freebird is most useful for other MCP tools that need search capabilities, or when you want the specialized freebird_fetch content extraction feature.

Quick Install:

claude mcp add freebird -- npx -y @dannyboy2042/freebird-mcp

Manual Configuration:

{
  "mcpServers": {
    "freebird": {
      "command": "npx",
      "args": ["-y", "@dannyboy2042/freebird-mcp"]
    }
  }
}

Add to your Cursor MCP settings file (~/.cursor-mcp/settings.json):

{
  "mcpServers": {
    "freebird": {
      "command": "npx",
      "args": ["-y", "@dannyboy2042/freebird-mcp"],
      "env": {}
    }
  }
}

Alternative with specific version:

{
  "mcpServers": {
    "freebird": {
      "command": "npx",
      "args": ["-y", "@dannyboy2042/freebird-mcp@latest"],
      "env": {}
    }
  }
}

Configure in Windsurf MCP settings:

{
  "mcpServers": {
    "freebird-search": {
      "command": "npx",
      "args": ["@dannyboy2042/freebird-mcp"],
      "disabled": false
    }
  }
}

Alternative naming:

{
  "mcpServers": {
    "freebird": {
      "command": "npx", 
      "args": ["@dannyboy2042/freebird-mcp"],
      "disabled": false
    }
  }
}

Add to your Continue configuration (~/.continue/config.json):

{
  "mcpServers": {
    "freebird": {
      "command": "npx",
      "args": ["-y", "@dannyboy2042/freebird-mcp"]
    }
  }
}

Generic MCP Configuration:

{
  "servers": {
    "freebird": {
      "command": "npx",
      "args": ["-y", "@dannyboy2042/freebird-mcp"],
      "transport": "stdio"
    }
  }
}

Direct Command Line:

npx @dannyboy2042/freebird-mcp
# Clone and build locally
git clone https://github.com/danielbowne/freebird-mcp.git
cd freebird-mcp
npm install
npm run build

# Test the server
node dist/index.js --help

# Add to your MCP client config:
{
  "mcpServers": {
    "freebird": {
      "command": "node",
      "args": ["/path/to/freebird-mcp/dist/index.js"]
    }
  }
}

πŸ’‘ Usage

Once installed, simply add "use freebird" to any prompt:

use freebird to find the latest TypeScript 5.0 features and examples

Available Tools

  • freebird_search - Smart search with auto-detection
  • freebird_fetch - Extract full page content in LLM-friendly Markdown
  • web_search - General web search
  • news_search - Latest news articles
  • image_search - Image search with filters
  • video_search - Video search with duration filters

Search Examples

# API Documentation & References
use freebird to find FastAPI async database connection examples

# Framework Comparisons
use freebird to compare Next.js 14 vs Remix performance benchmarks  

# Library Integration
use freebird to search for Prisma with PostgreSQL best practices

# Debugging & Troubleshooting
use freebird to find solutions for Docker container networking issues

# Architecture Patterns
use freebird to research microservices event-driven architecture patterns

# Tool Configuration
use freebird to find ESLint configuration for TypeScript monorepos

# Full Content Extraction  
use freebird to fetch the full FastAPI tutorial page content

Content Extraction Examples

# Get complete documentation pages
freebird_fetch: https://docs.python.org/3/library/asyncio.html

# Extract API reference with code examples
freebird_fetch: https://fastapi.tiangolo.com/tutorial/

# Pull full GitHub README or wiki pages
freebird_fetch: https://github.com/microsoft/TypeScript/blob/main/README.md

# Get complete tutorial content
freebird_fetch: https://react.dev/learn/thinking-in-react

πŸ§ͺ Testing

Test the MCP server locally:

# Test tool listing
echo '{"jsonrpc": "2.0", "method": "tools/list", "id": 1}' | \
npx @dannyboy2042/freebird-mcp

# Test search functionality
echo '{"jsonrpc": "2.0", "method": "tools/call", "params": {"name": "freebird_search", "arguments": {"query": "Node.js tutorials", "limit": 3}}, "id": 2}' | \
npx @dannyboy2042/freebird-mcp

# Test content fetching
echo '{"jsonrpc": "2.0", "method": "tools/call", "params": {"name": "freebird_fetch", "arguments": {"url": "https://httpbin.org/html", "maxLength": 1000}}, "id": 3}' | \
npx @dannyboy2042/freebird-mcp

πŸ”§ Configuration

No configuration required! Freebird works out of the box with sensible defaults.

Optional environment variables:

  • FREEBIRD_VERBOSE=true - Enable detailed logging
  • FREEBIRD_TIMEOUT=30000 - Request timeout in milliseconds

πŸ“š API Reference

freebird_search

Smart search that auto-detects the best search type based on your query.

Parameters:

  • query (required) - Search terms
  • limit (optional) - Number of results (1-20, default: 5)
  • region (optional) - Search region (default: us-en)
  • safeSearch (optional) - Filter level (strict/moderate/off)

Example:

{
  "query": "Rust async web framework performance comparison 2024",
  "limit": 8,
  "region": "us-en", 
  "safeSearch": "moderate"
}

freebird_fetch

Extract full page content from URLs and return clean, LLM-friendly Markdown.

Parameters:

  • url (required) - URL to fetch content from
  • maxLength (optional) - Maximum content length (1000-50000, default: 10000)
  • includeImages (optional) - Include image descriptions (default: false)

Features:

  • Converts HTML to clean Markdown
  • Removes ads, navigation, and clutter
  • Preserves code blocks, tables, and structure
  • Includes page metadata (title, description)
  • Respects content length limits

Example:

{
  "url": "https://docs.python.org/3/library/json.html",
  "maxLength": 15000,
  "includeImages": false
}

Output Format:

# Page Title

> Page description from meta tags

**Source:** https://example.com/page

---

# Main Content Header

Page content converted to clean Markdown with preserved:
- **Code blocks** with syntax highlighting info
- Tables with proper formatting
- Lists and nested structures
- Links and emphasis

... [Content truncated if over maxLength]

🀝 Contributing

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Commit your changes: git commit -m 'Add amazing feature'
  4. Push to the branch: git push origin feature/amazing-feature
  5. Open a Pull Request

πŸ“„ License

MIT License - see the LICENSE file for details.

πŸ™ Acknowledgments


Happy searching! πŸ•ŠοΈ