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 URI | Description |
|---|---|
helm://releases | List all Helm releases in cluster |
helm://releases/[release_name] | Get detailed release information |
helm://charts | List available charts in repositories |
helm://charts/[repo]/[name] | Get specific chart metadata |
helm://charts/[repo]/[name]/readme | Get chart README documentation |
kubernetes://cluster-info | Get Kubernetes cluster information |
kubernetes://namespaces | List all Kubernetes namespaces |
helm://best_practices | Helm 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​
| Prompt | Description | Arguments |
|---|---|---|
helm_workflow_guide | Complete workflow documentation | — |
helm_quick_start | Quick start for common operations | — |
helm_installation_guidelines | Installation best practices | — |
helm_troubleshooting_guide | Troubleshooting common issues | error_type |
helm_security_checklist | Security considerations | — |
helm_upgrade_guide | Upgrade guide for charts | chart_name |
helm_rollback_procedures | Rollback step-by-step guide | release_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​
- Examples — Usage patterns and workflows
- Tools — MCP tools reference
- Configuration — Server configuration