Skip to main content
Glama

Search MCP Server

A Model Context Protocol (MCP) server that enables searching and discovering existing MCP servers from the official GitHub repository.

Author: Krzysztof Kućmierz
Email: krzysztof.kucmierz@artificiuminformatica.pl
Repository [https://github.com/krzysztofkucmierz/search-mcp-server]

Features

  • Search MCP Servers: Find relevant MCP servers by name, description, or category

  • Dynamic Data: Live scraping from https://github.com/modelcontextprotocol/servers

  • Fast & Cached: Configurable caching (default: 6 hours) for optimal performance

Related MCP server: MCP Registry Server

Tools & Resources provided by server

  • Tools: search_mcp_servers(query, category), get_mcp_server_categories()

  • Resources: mcp://servers/list, mcp://servers/categories

Installation and usage - quick start

pip install uv
uv venv
source .venv/bin/activate
uv pip install search-mcp-server
search-mcp-server --sse # see available command line options in next sections

Installation and usage - details

Install uv (fast Python package manager)

# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Or with pip
pip install uv

uv venv
source .venv/bin/activate

Install MCP server from PyPi.org

uv pip install search-mcp-server

Start the MCP server

search-mcp-server --sse

Command Line Options

  • --sse: Start in SSE mode instead of stdio mode

  • --port PORT: Port for SSE mode (default: 8000)

  • --cache-timeout SECONDS: Cache timeout in seconds (default: 21600 = 6 hours)

  • --help: Displays available options

use --sse when you want other apps to connect over HTTP; omit it to run in stdio mode where the client must start the process.

Add MCP server to your IDE (example for VSCode)

If you run the server with --sse, point your client (or VSCode MCP extension) to the SSE URL (here it is http://127.0.0.1:8000/sse). Add the following minimal JSON to the mcp.json file:

{
    "servers": {
        "Search MCP server": { "url": "http://127.0.0.1:8000/sse", "type": "http" }
    },
    "inputs": []
}

Make sure it is in "Running" state. "Start" or "Restart" if needed.

Development

Fork the repository [https://github.com/krzysztofkucmierz/search-mcp-server]

git clone https://github.com/<your-account>/search-mcp-server.git
cd search-mcp-server
uv sync

Usage

Note: the server script mcp_server.py lives in the repo root — run it directly as shown below. If you install the package, the search-mcp-server entry point (configured in pyproject.toml) will also be available.

# SSE mode (recommended) — exposes an HTTP/SSE endpoint
uv run python mcp_server.py --sse

# Custom port and cache timeout
uv run python mcp_server.py --sse --port 8001 --cache-timeout 3600

# Stdio mode (for MCP clients that spawn the process)
uv run python mcp_server.py

Code quality tools

# Code quality
uv run ruff check --fix .
uv run mypy mcp_server.py

# Run server
uv run python mcp_server.py --sse

Debugging with MCP Inspector

npx @modelcontextprotocol/inspector uv run python mcp_server.py --sse
A
license - permissive license
-
quality - not tested
F
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Enables searching and retrieving detailed information about MCP servers from the official MCP registry. Provides tools to list servers with filtering options and get comprehensive details about specific servers.
    Last updated
    41
    3
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Enables discovery and search of available MCP servers through the official MCP Registry. Supports browsing servers with pagination and filtering to find the right MCP tools for your needs.
    Last updated
    1
    39
    4
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables discovery and querying of available MCP servers from the official repository. Supports searching by name, description, features, categories, and provides random server suggestions for exploration.
    Last updated
    36
    3
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Enables discovery and automatic installation of MCP servers via mcpmarket.com integration. Searches repositories, scrapes GitHub READMEs for configuration details, and provides one-click installation to MCP clients.
    Last updated

View all related MCP servers

Related MCP Connectors

  • Discover and recommend retriever MCP servers. Includes top picks and install config tools.

  • An MCP server that gives your AI access to the source code and docs of all public github repos

  • A MCP server built for developers enabling Git based project management with project and personal…

View all MCP Connectors

Latest Blog Posts

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/krzysztofkucmierz/search-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server