mcp-server-test
Verified Safeby RyutaSuzuki77
Overview
A minimal example of an MCP server that implements a simple 'ping' tool, demonstrating basic server functionality and tool registration within the Model Context Protocol SDK.
Installation
npx ts-node src/server.tsSecurity Notes
The server implements a single, extremely simple tool ('ping') that returns a static string 'pong' without processing any external input, making it inherently safe. It utilizes `StdioServerTransport` for communication, which typically involves inter-process communication rather than direct network exposure. No dynamic code execution (like 'eval') or sensitive information handling is present, and no hardcoded secrets were found.
Similar Servers
mcp-typescript-template
This project provides a foundational TypeScript template for developing remote Model Context Protocol (MCP) servers with robust tooling and best practices.
mcp-typescript-starter
A feature-complete Model Context Protocol (MCP) server template in TypeScript demonstrating all major MCP features for AI assistant interaction.
mcp-demo-server
Provides demo servers in Go and Python to demonstrate and test the Model Context Protocol (MCP) using various tools like echotest, timeserver, and fetch.
mcp_server
This server implements the Model Context Protocol (MCP) to expose developer-defined tools as a HTTP API, specifically demonstrating a task creation tool.