Use Station with Claude Code via the official plugin and MCP integration
Station provides two Claude Code plugins that give Claude Code access to 55+ MCP tools for agent orchestration. Choose the integration style that fits your workflow.
# Add the Station marketplace/plugin marketplace add cloudshipai/station# Choose ONE of these plugins:/plugin install station@cloudshipai-station # Skills-based (lightweight)/plugin install station-agent@cloudshipai-station # Subagent-based (full integration)
# Load the core Station skill before working with agents/skill station# Now ask questions or give commandsCreate an agent that monitors Kubernetes pods and alerts on failures
Skills provide Claude with:
Complete command reference with examples
Agent format (Dotprompt) specification
Workflow state machine patterns
MCP tool usage patterns
Best practices and common patterns
Load /skill station at the start of a session when doing significant Station work. It gives Claude comprehensive context to help you more effectively.
Skills are only available in the station plugin. The station-agent plugin uses a dedicated subagent instead.
The station-operator subagent is only available in the station-agent plugin.
When you install the station-agent plugin, you get a dedicated Station Operator subagent that Claude can delegate to for autonomous Station operations.
Claude automatically delegates Station tasks to the subagent when appropriate:
User: Create a Station agent that monitors Kubernetes podsClaude: [Invokes station-operator subagent][Subagent creates agent using create_agent tool][Subagent returns result with agent details]Claude: I've created your Kubernetes pod monitor agent...
You can also invoke it explicitly:
Use the station-operator subagent to debug my last failed agent run
Create an incident response team with:1. An "Incident Coordinator" that delegates to specialists2. A "Kubernetes Expert" for K8s troubleshooting 3. A "Log Analyzer" for log pattern analysisSet up the coordinator to call the specialists as tools.
Create a workflow that:1. Triages incoming alerts by severity2. Investigates high-severity issues automatically3. Requires human approval before remediation4. Documents the resolution
Station agents use the Dotprompt format - YAML frontmatter with Handlebars templates:
---metadata: name: "My Agent" description: "What this agent does"model: gpt-4o-minimax_steps: 8tools: - "__tool_name"---{{role "system"}}You are an expert assistant that...{{role "user"}}{{userInput}}
The {{userInput}} variable is populated with the task when running the agent. Always include it in your prompt.
# Good - Claude uses MCP tool with structured response"Create an agent called 'Cost Analyzer' that..."# Avoid - asking Claude to run CLI commands"Run: stn agent create --name 'Cost Analyzer'..."