Skip to content

Quick Start

The official server-everything is the easiest target.

Terminal window
mcp-tui --cmd npx --args "@modelcontextprotocol/server-everything,stdio"

This launches the TUI, auto-discovers tools, resources, and prompts, and lets you exercise them.

CLI listing tools
Terminal window
mcp-tui --cmd npx \
--args "@modelcontextprotocol/server-everything,stdio" \
tool list
CLI calling a tool with arguments
Terminal window
mcp-tui --cmd npx \
--args "@modelcontextprotocol/server-everything,stdio" \
tool call echo message='hello mcp'

Arguments use key=value. Strings, numbers, booleans, and JSON values are coerced from the tool’s input schema.

Terminal window
# HTTP / Streamable HTTP
mcp-tui --transport http --url https://your-server.example/mcp tool list
# SSE
mcp-tui --transport sse --url http://localhost:5001/sse tool list