MCP Connector

Discover and Search MCP Servers

Search and discover 547+ MCP servers from the official modelcontextprotocol/servers repository, filtered by category or feature.

Works with github

96
Spark score
out of 100
Status Verified
Updated Jun 2025
Version 1.0.0
Models
universal

Add to Favorites

Why it matters

Easily discover, search, and filter through over 547 MCP servers. Get detailed information, find servers by specific features, or explore random suggestions to enhance your development.

Outcomes

What it gets done

01

List all available MCP servers with filtering options.

02

Retrieve detailed information for a specific MCP server.

03

Search for MCP servers based on features or capabilities.

04

Get a random selection of MCP servers for exploration.

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/vb-mcp-servers-search | bash

Capabilities

Tools your agent gets

list_servers

Show all available MCP servers with optional filtering by category, search terms, and limit

get_server_details

Get detailed information about a specific MCP server by name

search_servers_by_feature

Search for servers that provide specific features or capabilities

get_random_servers

Get a random sample of MCP servers for exploration

refresh_server_list

Force refresh the cached list of MCP servers from GitHub

Overview

MCP Servers Search MCP Server

MCP Servers Search lets an AI assistant browse, search, and discover MCP servers listed in the official modelcontextprotocol/servers repository, with category filters, feature search, and random discovery. Use it when exploring or searching the catalog of official and community MCP servers. Not applicable for MCP servers outside that official repository listing.

What it does

MCP Servers Search is an MCP server for querying and discovering other MCP servers listed in the official modelcontextprotocol/servers GitHub repository, which listed 547 servers as of June 2025. It caches the repository's README listing for an hour at a time to minimize GitHub API calls, with a manual refresh option.

When to use - and when NOT to

Use it when you want an AI assistant to answer questions like "What MCP servers are available for database operations?" or "Show me all official MCP servers," browse by category (reference, official, community), search by name/description/author, find servers matching a specific feature, or get random suggestions for exploration. Do not use it for discovering MCP servers outside the official modelcontextprotocol/servers listing - its data source is limited to that repository's README.

Capabilities

  • list_servers: list available servers, optionally filtered by category ("reference", "official", "community", or "all"), search term, and limit (default 20).
  • get_server_details: get detailed information about a specific server by name.
  • search_servers_by_feature: find servers matching a feature keyword (e.g. "database", "api", "blockchain"), with a limit (default 10).
  • get_random_servers: get a random selection of servers for exploration, with count (default 5) and optional category filter.
  • refresh_server_list: force-refresh the cached server list from GitHub.

Example query: {"name": "search_servers_by_feature", "arguments": {"feature": "blockchain", "limit": 5}}.

How to install

npm install -g @atonomus/mcp-servers-search

Or build from source (git clone the repo, then npm install), or run directly without installing:

npx @atonomus/mcp-servers-search

Register with Claude Desktop in claude_desktop_config.json:

{
  "mcpServers": {
    "servers-search": {
      "command": "npx",
      "args": ["-y", "@atonomus/mcp-servers-search"]
    }
  }
}

It can also be used programmatically as a library:

import { MCPToolsQueryServer } from '@atonomus/mcp-servers-search';
const server = new MCPToolsQueryServer();
await server.run();

The project's own Mocha test suite is described as comprehensive, covering README-parsing edge cases specifically: standard Name - description entries, bold **Name** entries, list-prefixed - Name entries, author extraction from (by AuthorName) suffixes, category detection across reference/official/community, description cleaning (stripping embedded links), and special-character handling that preserves backticks. It's built on the official Model Context Protocol TypeScript SDK, and its own data comes entirely from parsing the modelcontextprotocol/servers repository's README rather than a separate curated database.

Who it's for

Developers exploring the MCP ecosystem who want to discover, filter, or search official and community MCP servers conversationally instead of manually scrolling the GitHub repository's README.

Source README

MCP Servers Search

An MCP (Model Context Protocol) server that provides tools for querying and discovering available MCP servers from the official modelcontextprotocol/servers repository.

547 MCP servers as of June 2025.

Features

  • List Servers: Browse all available MCP servers with filtering by category
  • Search: Find servers by name, description, or author
  • Feature Search: Discover servers that provide specific capabilities
  • Random Discovery: Get random server suggestions for exploration
  • Caching: Efficient caching to minimize GitHub API calls

Installation

Using npm

npm install -g @atonomus/mcp-servers-search

From source

git clone https://github.com/atonomus/mcp-servers-search.git
cd mcp-servers-search
npm install

Usage

Standalone

# Run directly with npx
npx @atonomus/mcp-servers-search

# Or if installed globally
mcp-servers-search

With Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "servers-search": {
      "command": "npx",
      "args": ["-y", "@atonomus/mcp-servers-search"]
    }
  }
}

Available Tools

1. list_servers

List all available MCP servers with optional filtering.

Parameters:

  • category (optional): Filter by category - "reference", "official", "community", or "all" (default)
  • search (optional): Search servers by name or description
  • limit (optional): Maximum number of results (default: 20)

Example:

{
  "name": "list_servers",
  "arguments": {
    "category": "official",
    "search": "database",
    "limit": 10
  }
}

2. get_server_details

Get detailed information about a specific MCP server.

Parameters:

  • name (required): The name of the MCP server

Example:

{
  "name": "get_server_details",
  "arguments": {
    "name": "GitHub"
  }
}

3. search_servers_by_feature

Search for servers that provide specific features or capabilities.

Parameters:

  • feature (required): The feature to search for (e.g., "database", "api", "blockchain")
  • limit (optional): Maximum number of results (default: 10)

Example:

{
  "name": "search_servers_by_feature",
  "arguments": {
    "feature": "blockchain",
    "limit": 5
  }
}

4. get_random_servers

Get a random selection of MCP servers for discovery.

Parameters:

  • count (optional): Number of random servers (default: 5)
  • category (optional): Filter by category (default: "all")

Example:

{
  "name": "get_random_servers",
  "arguments": {
    "count": 3,
    "category": "community"
  }
}

5. refresh_server_list

Force refresh the cached list of MCP servers from GitHub.

Example:

{
  "name": "refresh_server_list",
  "arguments": {}
}

Development

Setup

# Install dependencies
npm install

# Run normally
npm start

# Run tests
npm test

Testing

The project includes a comprehensive Mocha test suite that tests the README parsing functionality. The tests cover:

  • Standard format entries: [Name](link) - description
  • Bold format entries: **[Name](link)** - description
  • List format entries: - [Name](link) - description
  • Author extraction: (by AuthorName)
  • Category detection (reference, official, community)
  • Description cleaning (removing embedded links)
  • Special character handling (preserving backticks)

Run tests with:

npm test

Examples

Using with Claude Desktop

Once configured, you can ask Claude:

  • "What MCP servers are available for database operations?"
  • "Show me all official MCP servers"
  • "Find MCP servers related to AI or machine learning"
  • "Give me 5 random community servers to explore"
  • "Tell me more about the GitHub MCP server"

Programmatic Usage

// Example of using the server programmatically
import { MCPToolsQueryServer } from '@atonomus/mcp-servers-search';

const server = new MCPToolsQueryServer();
await server.run();

Caching

The server caches the list of available MCP servers for 1 hour to minimize API calls to GitHub. You can force a refresh using the refresh_server_list tool.

FAQ

Common questions

Trust

How it checks out

Official By maintainer
Downloads 0

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.