strange-mcp-core
Verified Safeby trangpl193
Overview
Provides a shared foundation and framework for building Model Context Protocol (MCP) servers that expose AI-callable tools over HTTP.
Installation
No command providedEnvironment Variables
- API_KEY
Security Notes
The framework itself is well-engineered for security, providing robust JSON-RPC handling, API key authentication, and structured error responses (e.g., preventing stack trace leaks from operational errors). Input body size is limited to prevent DoS. CORS is enabled with `Access-Control-Allow-Origin: *`, which is permissive but common for APIs. The primary security consideration for a deployed server built with this framework will lie in the implementation of the `ToolDefinition.handler` functions, as these are arbitrary code executed in response to network requests. The framework provides the mechanisms but cannot guarantee the security of custom tool implementations.
Similar Servers
fastmcp
FastMCP is an ergonomic interface for the Model Context Protocol (MCP), providing a comprehensive framework for building and interacting with AI agents, tools, resources, and prompts across various transports and authentication methods.
mcp-omnisearch
Provides a unified interface for various search, AI response, content processing, and enhancement tools via Model Context Protocol (MCP).
tmcp
A server implementation for the Model Context Protocol (MCP) to enable LLMs to access external context and tools.
boilerplate-mcp-server
Provides a production-ready foundation for developing custom Model Context Protocol (MCP) servers in TypeScript to connect AI assistants with external APIs and data sources, exemplified by an IP geolocation tool.