ping

Echoes an input message or returns pong as a readiness probe.

1|Updated Apr 1, 2026
One-click install
npx skills add https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment --skill ping-fermisloth
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ping
Source: https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment/tree/main/.agent/skills/ping
Command: npx skills add https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment --skill ping-fermisloth

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires unity-mcp-cli.

What problem does it solve? Verifying that the unity-mcp-cli toolchain and MCP system tools are reachable and responsive before running real operations is a common need; this Skill provides a minimal readiness check that confirms connectivity. ## Core Features & Use Cases - Readiness Probe: Calls the ping system tool to confirm the unity-mcp-cli environment is installed and responsive. - Message Echo: Returns the provided message string, or 'pong' when no message is supplied. - Use Case: Before running a larger Unity automation workflow, invoke ping with a test message to confirm the CLI is configured correctly and the system tool endpoint responds. ## Quick Start Ask the assistant to run the ping system tool with a test message to verify the unity-mcp-cli connection is working.

Frequently Asked Questions about ping

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check if unity-mcp-cli is working?

Run the ping system tool with an optional message using unity-mcp-cli run-system-tool ping. If the tool returns your message or 'pong', the CLI and system tool endpoint are responsive.

What does the ping system tool return?

The ping tool returns a JSON object with a result string. It echoes back the message you provide, or returns 'pong' when the message parameter is omitted.

Why is unity-mcp-cli not found when running ping?

The CLI is either not installed or not on your PATH. Install it globally with npm install -g unity-mcp-cli, or prefix commands with npx unity-mcp-cli instead.

Can I pass complex multi-line input to the ping tool?

Yes. Save the JSON payload to a file and use --input-file args.json, or pipe it via stdin using --input-file - with a heredoc, which is recommended for multi-line strings.

Is the message parameter required for ping?

No, the message parameter is optional. When omitted, the tool simply returns 'pong', making it suitable as a minimal readiness probe.