For the complete documentation index, see llms.txt. This page is also available as Markdown.

Getting-started Prompts

Once your MCP server is connected, you can dive right in.

Here are a few prompts to try. They work out of the box with agents like Cursor, Claude, or VS Code:

💡 Starting your request with “Use groundcover” is a helpful nudge - it pushes the agent toward MCP tools and context.

Basic Prompts to Try

MCP supports complex, multi-step flows, but starting simple is the best way to ramp up.

Pull Logs

Prompt:

Use groundcover to get 5 logs from the workload news-service from the past 15 minutes.

Expected behavior: The agent should call query_logs and show recent logs for that workload.

Inspect a K8s Resource

Prompt:

Use groundcover to show the current state of the chat-app deployment.

Expected behavior: The agent should call query_entities with kind:Deployment name:chat-app | limit 1 and return the deployment's live-state fields (replicas, status, labels, etc.) or a summary of them.

Find Slow Workloads

Prompt:

Expected behavior: The agent should call query_traces with a query like * | stats by (workload) quantile(0.95, duration_seconds) as p95 | sort by (p95 desc) | limit 5 and return the top 5 workloads.

Investigate Issues

When something breaks, your agent can help investigate and make sense of it.

Prompt:

Expected behavior: The agent should use query_issues, pull issue details, and kick off a relevant investigation using logs, traces, and metadata.

Investigate Multiple Issues

Prompt:

Expected behavior: The agent should call query_issues with a scoped query like * | filter namespace:staging-env | sort by (_time desc) | limit 20 and walk through the returned issues one by one.

Automate Coding & Debugging

groundcover’s MCP can also be your coding sidekick. Instead of digging through tests and logs manually, deploy your changes and let the agent take over.

Iterate Over Test Results

Prompt:

Expected behavior: The agent should update the code with log statements, deploy it, and use query_logs to trace and debug.

Deploy & Verify

Prompt:

Expected behavior: The agent should assist with deployment, then check for issues, error logs, and traces via groundcover.

Last updated