FastMCP is a provider that enables direct tool execution through the Model Context Protocol (MCP). It provides a streamlined way to execute tools without complex workflow orchestration.
# Install Kubiya CLIcurl -fsSL https://raw.githubusercontent.com/kubiyabot/cli/main/install.sh | bash# Set your API keyexport KUBIYA_API_KEY="your-api-key"
# Test connectionkubiya mcp serve --test# Or use with Claude Desktop# Add to ~/.config/Claude/claude_desktop_config.json:{ "mcpServers": { "kubiya": { "command": "kubiya", "args": ["mcp", "serve"] } }}
# Ask your AI assistant:"Use Kubiya to check the health of our Kubernetes cluster"# The MCP server will execute:# - kubectl get nodes# - kubectl get pods --all-namespaces# - kubectl top nodes
# Deploy application"Deploy version 2.1.0 to staging using Kubiya"# Database backup"Create a backup of the production database"# Log analysis"Analyze the application logs for errors in the last hour"
# Create custom monitoring tool"Create a tool that monitors disk space and sends alerts"# Data processing"Build a tool that processes CSV files and generates reports"