Skip to main content

Resources and Prompts

Resources give you read-only access to Helm and Kubernetes data via URIs. Prompts give you guided workflows for common operations.


Resources​

Resource URIDescription
helm://releasesList all Helm releases in cluster
helm://releases/[release_name]Get detailed release information
helm://chartsList available charts in repositories
helm://charts/[repo]/[name]Get specific chart metadata
helm://charts/[repo]/[name]/readmeGet chart README documentation
kubernetes://cluster-infoGet Kubernetes cluster information
kubernetes://namespacesList all Kubernetes namespaces
helm://best_practicesHelm best practices guide

helm://releases​

List all Helm releases across the cluster.

Example response:

{
"releases": [
{
"name": "my-postgresql",
"namespace": "database",
"revision": 3,
"status": "deployed",
"chart": "postgresql-12.5.0",
"app_version": "15.3.0"
}
]
}

helm://releases/[release_name]​

Get detailed info for a specific release. Example: helm://releases/my-postgresql. Returns metadata, revision, values used, manifests, and history.


helm://charts/[repo]/[name]​

Chart metadata. Example: helm://charts/bitnami/postgresql. Returns description, versions, maintainers, dependencies, keywords.


helm://charts/[repo]/[name]/readme​

Chart README. Example: helm://charts/bitnami/postgresql/readme. Full README with install instructions, config options, usage examples.


kubernetes://cluster-info​

Cluster info — version, API server URL, node count, current context.


helm://best_practices​

Helm best practices — security, configuration, deployment patterns, troubleshooting.


Prompts​

PromptDescriptionArguments
helm_workflow_guideComplete workflow documentation—
helm_quick_startQuick start for common operations—
helm_installation_guidelinesInstallation best practices—
helm_troubleshooting_guideTroubleshooting common issueserror_type
helm_security_checklistSecurity considerations—
helm_upgrade_guideUpgrade guide for chartschart_name
helm_rollback_proceduresRollback step-by-step guiderelease_name

helm_workflow_guide — Full workflow from discovery to deployment. Ask: "Show me the complete Helm workflow guide"

helm_quick_start — Quick start for common operations. Ask: "Give me a quick start guide for Helm"

helm_installation_guidelines — Best practices for installs: value config, namespaces, resource management, pre-install checks.

helm_troubleshooting_guide — Takes error_type: pod-crashloop, image-pull, pending-pods, helm-timeout, values-error. Ask: "My pods are in CrashLoopBackOff after deploying redis"

helm_security_checklist — Secret management, RBAC, network policies, image security, audit logging.

helm_upgrade_guide — Takes chart_name. Pre-upgrade checks, backup, upgrade steps, verification, rollback plan.

helm_rollback_procedures — Takes release_name. When to rollback, picking a revision, execution, verification.


Next steps​