@ariburaco/free-for-dev-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@ariburaco/free-for-dev-mcpfind free cloud databases with generous limits"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@ariburaco/free-for-dev-mcp
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
Related MCP server: MCP SearXNG Enhanced
Installation
As an NPM Package
npm install -g @ariburaco/free-for-dev-mcpFrom 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 startMCP Client Configuration
Claude Code
Quick setup with Claude Code:
claude mcp add free-for-dev -- npx @ariburaco/free-for-dev-mcpCursor 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 buildArchitecture
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
Data source: free-for-dev by ripienaar
Built with Model Context Protocol by Anthropic
Powered by Bun runtime
Support
For issues and feature requests, please visit our GitHub repository.
NPM Package

This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ariburaco/free-for-dev-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server