Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A Model Context Protocol server that provides semantic search and intelligent access to a comprehensive list of free services and tools for developers.

README.md

@ariburaco/free-for-dev-mcp

![npm version](https://www.npmjs.com/package/@ariburaco/free-for-dev-mcp) ![License: MIT](https://opensource.org/licenses/MIT)

A powerful Model Context Protocol (MCP) server that provides semantic search and intelligent access to the free-for-dev repository - a comprehensive list of free services and tools for developers.

Features

  • 🔍 Semantic Search: Natural language search using Fuse.js for fuzzy matching
  • Smart Caching: LRU cache for fast responses and persistent disk cache
  • 🎯 Advanced Filtering: Filter by categories, tags, and custom queries
  • 🤖 AI-Optimized: Designed specifically for LLM context consumption
  • 📊 Rich Analytics: Service popularity ranking and similarity matching
  • 🚀 High Performance: Built with Bun for blazing-fast execution

Installation

As an NPM Package

npm install -g @ariburaco/free-for-dev-mcp

From Source

# Clone the repository
git clone https://github.com/ariburaco/free-for-dev-mcp.git
cd free-for-dev-mcp

# Install dependencies
bun install

# Build the server
bun run build

# Run the server
bun start

MCP Client Configuration

Claude Code

Quick setup with Claude Code: ``bash claude mcp add free-for-dev -- npx @ariburaco/free-for-dev-mcp ``

Cursor IDE

Add to your Cursor MCP configuration in the Cursor Settings

{
  "mcpServers": {
    "free-for-dev": {
      "command": "npx",
      "args": ["@ariburaco/free-for-dev-mcp"]
    }
  }
}

VS Code with Continue

Add to your Continue configuration:

{
  "models": [...],
  "mcpServers": {
    "free-for-dev": {
      "command": "npx",
      "args": ["@ariburaco/free-for-dev-mcp"]
    }
  }
}

Custom MCP Client

import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js';
import { spawn } from 'child_process';

const transport = new StdioClientTransport({
  command: 'npx',
  args: ['@ariburaco/free-for-dev-mcp']
});

const client = new Client({
  name: 'my-client',
  version: '1.0.0'
});

await client.connect(transport);

// Use the tools
const result = await client.callTool({
  name: 'semantic_search',
  arguments: {
    query: 'free cloud database with good limits',
    limit: 5
  }
});

Available Tools

🔍 semantic_search

Advanced natural language search with fuzzy matching and relevance scoring.

{
  query: string;      // Natural language search query
  category?: string;  // Filter by category
  tags?: string[];    // Filter by tags
  limit?: number;     // Max results (default: 10, max: 50)
}

🔎 search_services

Traditional keyword-based search.

{
  query?: string;     // Search query
  category?: string;  // Filter by category
  tags?: string[];    // Filter by tags
  limit?: number;     // Max results (default: 10)
}

🔗 get_similar_services

Find services similar to a given service based on tags and category.

{
  serviceName: string;  // Name of the service
  limit?: number;       // Max results (default: 5)
}

get_popular_services

Get the most comprehensive and popular free services.

{
  limit?: number;  // Number of services (default: 10)
}

📁 list_categories

List all available service categories.

{
  withCount?: boolean;  // Include service count per category
}

ℹ️ get_service

Get detailed information about a specific service.

{
  name?: string;  // Service name
  url?: string;   // Service URL
}

🏷️ list_tags

List all available tags across all services.

📊 get_stats

Get statistics about the service database and cache.

🔄 refresh_data

Refresh the data from the GitHub repository.

Examples

Finding Cloud Databases

// Using semantic search for natural language queries
{
  "tool": "semantic_search",
  "arguments": {
    "query": "cloud database with generous free tier",
    "tags": ["database"],
    "limit": 5
  }
}

Finding Similar Services

// Find services similar to Supabase
{
  "tool": "get_similar_services",
  "arguments": {
    "serviceName": "Supabase",
    "limit": 5
  }
}

Getting Popular Services by Category

// Get popular API services
{
  "tool": "semantic_search",
  "arguments": {
    "query": "api",
    "category": "APIs, Data, and ML",
    "limit": 10
  }
}

Development

# Install dependencies
bun install

# Run in development mode
bun run dev

# Run tests
bun test

# Run tests with UI
bun run test:ui

# Check types
bun run typecheck

# Build for production
bun run build

Architecture

  • Parser: Fetches and parses the free-for-dev README from GitHub
  • Search Engine: Fuse.js-based semantic search with caching
  • Cache Manager: Two-tier caching (memory + disk) for optimal performance
  • MCP Server: Implements the Model Context Protocol with 9 specialized tools

Performance

  • Sub-second responses for cached queries
  • 📦 1,500+ services indexed and searchable
  • 🔄 24-hour cache with automatic refresh
  • 💾 Persistent cache survives server restarts

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT - See LICENSE file for details.

Credits

Support

For issues and feature requests, please visit our GitHub repository.

NPM Package

![NPM](https://www.npmjs.com/package/@ariburaco/free-for-dev-mcp)

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.