MPC-PoC-1-EchoServerToolsbasicas
Related Servers
Alternatives to MPC-PoC-1-EchoServerToolsbasicas
No user-submitted related servers found.
Related Servers
- FlicenseNot gradedqualityCmaintenanceA model-agnostic MCP server exposing example tools (add1, multiply2, greet) for learning purposes, working with any LLM through stdio transport.-
- FlicenseNot gradedqualityDmaintenanceA minimal MCP server that exposes tools for addition, echoing text, time lookup, and URL fetching, with support for HTTP and stdio transports.-
- AlicenseNot gradedqualityBmaintenanceA simple MCP server/client implementation for testing Hermes Agent, exposing basic tools like echo, add, and get_server_info via stdio.MIT
- AlicenseAqualityCmaintenanceEnables running a minimal MCP server over stdio that manually implements JSON-RPC, exposing an add tool so users can observe the handshake, tool listing, and tool call cycle without the official SDK.1MIT
- FlicenseNot gradedqualityBmaintenanceMinimal MCP server for testing GitHub PR checks pipeline, with deterministic tools echo, add, and server_info.-
- FlicenseNot gradedqualityCmaintenanceA zero-dependency MCP server that demonstrates the raw MCP protocol over stdio and Streamable HTTP transports, with simple tools like time, echo, and add.-
TDQS
Scored across 3 tools
Each tool performs a completely distinct operation: echo returns input unchanged, add performs numeric addition, reverse flips a string's character order. There is no overlap or ambiguity between them.
All three tool names are single lowercase verbs in a consistent imperative style: echo, add, reverse. The pattern is uniform and predictable.
Three tools is a reasonable size for a basic PoC utility server. While slightly minimal, it stays within a well-scoped range and avoids being either overly thin or bloated.
For a simple echo server with basic utilities, the set covers its apparent purpose without glaring gaps. The operations are self-contained, though there is no clear domain model requiring CRUD coverage.