mcp-registry-interface
MCP server for interfacing with the official Model Context Protocol registry. Enables Claude and other MCP clients to dynamically discover, browse, search, and manage MCP servers directly from GitHub.
README
mcp-registry-interface
๐ MCP server for interfacing with the official Model Context Protocol registry
Enables Claude and other MCP clients to dynamically discover, browse, search, and manage MCP servers directly from GitHub. Fetches real-time data from the official MCP servers repository.
๐ Features
- ๐ Real-time Search - Find MCP servers from live GitHub data
- ๐ฆ Server Details - Get comprehensive information including installation guides
- ๐ Categories - Browse servers by functionality (filesystem, database, etc.)
- ๐ Auto-refresh - Cached data with configurable refresh intervals
- ๐ Rate Limit Aware - Supports GitHub tokens for higher API limits
- โ No Mock Data - Always provides real data or fails transparently
๐ Available Tools
| Tool | Description |
|---|---|
registry_search_servers |
Search MCP servers by name, description, or tags |
registry_get_server_details |
Get detailed server information and installation guides |
registry_list_categories |
List all server categories with descriptions |
registry_refresh_data |
Force refresh GitHub data (bypasses cache) |
๐ ๏ธ Installation
NPM (Recommended)
npx mcp-registry-interface
Manual Installation
git clone <repository-url>
cd mcp-registry-interface
npm install
npm start
โ๏ธ Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"registry-interface": {
"command": "npx",
"args": ["mcp-registry-interface"],
"env": {
"GITHUB_TOKEN": "your-github-token-optional"
}
}
}
}
Environment Variables
| Variable | Description | Required |
|---|---|---|
GITHUB_TOKEN |
GitHub personal access token for higher rate limits | No (60 requests/hour without) |
Without a GitHub token, you get 60 API calls per hour. With a token, you get 5,000 calls per hour.
๐ฏ Example Usage
User: "Find MCP servers for working with databases"
Claude: Uses registry_search_servers with category="database"
User: "Show me details about the filesystem server"
Claude: Uses registry_get_server_details with serverId="mcp-filesystem"
User: "What categories of MCP servers are available?"
Claude: Uses registry_list_categories
๐ Security & Reliability
- โ Real Data Only - No mock/fake data that could mislead developers
- โ Transparent Failures - Clear error messages when GitHub API is unavailable
- โ Rate Limit Handling - Proper GitHub API rate limit management
- โ Input Validation - Secure parameter checking and sanitization
- โ No Hardcoded Secrets - All tokens from environment variables
๐งช Development & Testing
The server fetches live data from GitHub's API:
# Basic usage (60 requests/hour)
node src/index.js
# With GitHub token (5000 requests/hour)
GITHUB_TOKEN=your_token_here node src/index.js
# Test the server
node static-test.js
๐ก๏ธ Error Handling
When GitHub API is unavailable, the server:
- โ Does NOT provide fake/mock data
- โ Returns clear error messages
- โ Explains how to resolve the issue
- โ Maintains cache for recent successful requests
๐ค Contributing
This tool helps accelerate the MCP ecosystem by making server discovery seamless with real, up-to-date information.
- Fork the repository
- Create a feature branch
- Make your changes
- Test with live GitHub data
- Submit a pull request
๐ Data Source
- Primary Source: modelcontextprotocol/servers README
- API: GitHub Contents API
- Update Frequency: 5-minute cache with manual refresh capability
- Parsing: Extracts official reference servers and community servers
๐ License
MIT License - see LICENSE file for details.
๐ฏ Philosophy: This tool believes in transparency - real data or honest failure, never misleading mock data.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.