Quick Start
Connect to a sample server
Section titled “Connect to a sample server”The official server-everything is the easiest target.
mcp-tui --cmd npx --args "@modelcontextprotocol/server-everything,stdio"This launches the TUI, auto-discovers tools, resources, and prompts, and lets you exercise them.
List tools from the CLI
Section titled “List tools from the CLI”
mcp-tui --cmd npx \ --args "@modelcontextprotocol/server-everything,stdio" \ tool listCall a tool
Section titled “Call a tool”
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.
Connect to an HTTP or SSE server
Section titled “Connect to an HTTP or SSE server”# HTTP / Streamable HTTPmcp-tui --transport http --url https://your-server.example/mcp tool list
# SSEmcp-tui --transport sse --url http://localhost:5001/sse tool listNext steps
Section titled “Next steps”- TUI guide — keyboard navigation and discovery
- CLI reference — every subcommand and flag
- Automation & CI — exit codes, JSON output