MCP.so
Sign In

humanmcp

@Syuparn

About humanmcp

You are the MCP server!

Basic information

Category

Other

License

MIT

Runtime

go

Transports

stdio

Publisher

Syuparn

Config

No standard config provided

This server doesn't expose a parseable MCP config block in its README. See the repository for install instructions.

Repository

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is humanmcp?

humanmcp is a joke MCP server that requires a human to manually process all requests and responses. Instead of automating tools, the user reads incoming JSON-RPC requests from in.txt and writes the corresponding responses to out.txt. It is intended as a humorous parody of automated MCP servers.

How to use humanmcp?

  1. Download the server binary from the Releases page.
  2. Add the server to your MCP host settings (e.g., VSCode) with the command pointing to the binary.
  3. Monitor in.txt for incoming requests using tail -f in.txt.
  4. Manually craft and write the correct JSON-RPC response to out.txt using echo '...' > out.txt or similar.

Key features of humanmcp

  • 100% manual operation – no automation involved.
  • Reads requests from in.txt and writes responses to out.txt.
  • Works with any MCP host that supports external servers.
  • Lightweight binary distributed via GitHub Releases.
  • Demonstrates the underlying MCP protocol in a transparent way.

Use cases of humanmcp

  • Learning the MCP protocol by manually handling requests and responses.
  • Testing MCP client behaviour with a predictable, human‑controlled server.
  • Fun / educational demonstration of how MCP servers communicate.
  • Exploring the structure of JSON-RPC messages in an MCP context.

FAQ from humanmcp

How does humanmcp differ from a normal MCP server?

A normal MCP server automates tool execution. humanmcp requires a human to read each request and manually write the response, making it the opposite of automation.

What dependencies or runtime are required?

Only the server binary (downloaded from Releases) and a text file editor/terminal. No language runtime, packages, or external services are needed.

Where are the request and response data stored?

All data is stored locally in two plain‑text files: in.txt (requests from the client) and out.txt (responses written by the human). The files are created by the MCP host.

Are there any known limits or disadvantages?

The server has no built‑in tools or logic – every response must be crafted manually. This makes it impractical for real‑world use and extremely slow compared to automated servers.

How does authentication and transport work?

The server uses standard MCP protocol over stdio (the binary reads from stdin and writes to stdout). humanmcp does not implement any authentication or custom transport; it simply relays the raw JSON-RPC messages via the text files.

Comments

More Other MCP servers