mcp-servers
Verified Safeby hitosh308
Overview
A minimal Japanese web interface for listing and filtering Model Context Protocol (MCP) servers from a live registry, with a local data fallback.
Installation
php -S localhost:8000Security Notes
The code demonstrates good security practices for a simple web application. All output to HTML is properly escaped using `htmlspecialchars`, mitigating Cross-Site Scripting (XSS) risks. External API calls are made to a hardcoded public registry URL, without dynamic user input in the URL, reducing direct server-side injection vectors. No `eval()` or similar dangerous functions are used. There are no hardcoded secrets or sensitive credentials. Client-side filtering in JavaScript further limits server-side exposure to user input for search parameters. The primary external interaction is with the public MCP registry.
Similar Servers
php-mcp
Facilitates communication and integration between LLM applications and external data sources or tools by implementing the Model Context Protocol (MCP).
php-mcp-sdk
A PHP SDK for building Model Context Protocol (MCP) servers that expose AI capabilities (tools, prompts, sampling) and data resources to clients, facilitating AI agent orchestration and structured human-AI interaction.
mcp-registry
The Model Context Protocol (MCP) Registry centralizes and structures installation configurations for various MCP servers, enabling easy discovery and integration into MCP clients and hubs.
toolhive-registry-server
The central metadata hub for enterprise Model Context Protocol (MCP) server governance and discovery, implementing the official MCP Registry API specification.