by alexei-led
CLI for exploring AWS EC2 Spot inventory. Inspect AWS Spot instance types, saving, price, and interruption frequency.
# Add to your Claude Code skills
git clone https://github.com/alexei-led/spotinfoGuides for using mcp servers skills like spotinfo.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:58:07.615Z",
"npmAuditRan": true,
"pipAuditRan": true
}spotinfo is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by alexei-led. CLI for exploring AWS EC2 Spot inventory. Inspect AWS Spot instance types, saving, price, and interruption frequency. It has 161 GitHub stars.
Yes. spotinfo passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/alexei-led/spotinfo" and add it to your Claude Code skills directory (see the Installation section above).
spotinfo is primarily written in Go. It is open-source under alexei-led on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh spotinfo against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
Command-line tool for AWS EC2 Spot Instance exploration with placement score analysis
spotinfo is a powerful CLI tool and Model Context Protocol (MCP) server that provides comprehensive AWS EC2 Spot Instance information, including real-time placement scores, pricing data, and interruption rates. Perfect for DevOps engineers optimizing cloud infrastructure costs.
t3.*, ^(m5|c5)\.(large|xlarge)$)--region all support# macOS with Homebrew
brew tap alexei-led/tap
brew install alexei-led/tap/spotinfo
# Linux/Windows: Download from releases
curl -L https://github.com/alexei-led/spotinfo/releases/latest/download/spotinfo_linux_amd64.tar.gz | tar xz
# Docker
docker pull ghcr.io/alexei-led/spotinfo:latest
Supported platforms: macOS, Linux, Windows on AMD64/ARM64
# Get placement scores for instances
spotinfo --type "m5.large" --with-score
# Find high-reliability instances with budget constraints
spotinfo --cpu 4 --memory 16 --with-score --min-score 8 --price 0.30
# Compare across regions with AZ-level details
spotinfo --type "t3.*" --with-score --az --region "us-east-1" --region "eu-west-1"
# Export data for automation
spotinfo --type "c5.*" --with-score --min-score 7 --output json
| Flag | Description |
|---|---|
--with-score |
Enable real-time placement score fetching |
--az |
Get AZ-level scores instead of regional |
--min-score N |
Filter instances with score ≥ N (1-10) |
--sort score |
Sort by placement score |
📖 Complete reference: Usage Guide | Examples
spotinfo functions as a Model Context Protocol (MCP) server, enabling AI assistants to directly query AWS Spot Instance data through natural language.
{
"mcpServers": {
"spotinfo": {
"command": "spotinfo",
"args": ["--mcp"]
}
}
}
Ask Claude: "Find cheapest t3 instances with placement score >7" or "Compare m5.large prices across US regions"
🤖 Full setup guide: MCP Server Documentation
🚨 Key Insight: Placement scores are contextual - they evaluate success probability for your entire request, not individual instance types.
# Lower score (limited flexibility)
spotinfo --type "t3.micro" --with-score
# Score: 🔴 3
# Higher score (flexible options)
spotinfo --type "t3.*" --with-score
# Score: 🟢 9
This is expected AWS behavior - providing multiple instance types gives AWS more fulfillment options.
📚 Learn more: AWS Spot Placement Scores
| Document | Description |
|---|---|
| Usage Guide | Complete CLI reference with all flags and examples |
| AWS Spot Placement Scores | Deep dive into placement scores with visual guides |
| Examples & Use Cases | Real-world DevOps scenarios and automation patterns |
| MCP Server Setup | Model Context Protocol integration guide |
| Data Sources | AWS data feeds, caching strategy, and troubleshooting |
AWS credentials are optional but recommended for complete functionality:
| Feature | Without Credentials | With Credentials |
|---|---|---|
| Spot advisor data | Full access | Full access |
| Static pricing | Full access | Full access |
| Live price fallback | Unavailable (shows $0 for missing types) | Fetches current prices via EC2 API |
| Placement scores | Unavailable | Real-time scores (1-10) |
Required IAM permissions for full functionality:
ec2:DescribeSpotPriceHistory — live price fallback for newer instance typesec2:GetSpotPlacementScores — placement score analysisCredentials are loaded via the AWS SDK default credential chain (environment variables, shared config, IAM roles, etc.).
Requirements: Go 1.24+, make, golangci-lint
# Build and test
make all
# Update embedded data
make update-data update-price
# Docker build
docker buildx build --platform=linux/arm64,linux/amd64 -t spotinfo .
CI/CD: Automated testing, linting, releases, and multi-arch Docker builds via GitHub Actions
Contributions welcome! Please read the development commands in CLAUDE.md and ensure all tests pass.
Apache 2.0 License - see LICENSE for details.