Tasks that are impossible or impractical with MCP.
Query 12 months of costs, forecasts, anomalies, budgets, and reservations in one shot.
MCP Rate-limited at 5 req/s. Dozens of paginated calls across costs, forecasts, anomalies, budgets, and reservations. Context overflows fast.
$ max search \
aws-cost-explorer-1 \
AWSCostAnomaly \
--filter 'totalImpact > 100'
Rank the slowest queries with full SQL text, wait events, and CPU correlation — from an API no MCP server covers.
MCP No MCP server exists. The PI API requires sequential calls to get metrics, dimension keys, and full SQL text for each query.
$ max search \
aws-perf-insights-1 \
AWSPITopSQL \
--sort dbLoad | head
Analyze every incident this quarter with full details — severity, timelines, and customer impact across sources.
MCP Paginated at 100/page. Full incident details require N+1 calls. Cross-referencing with other sources is impractical.
$ max search \
datadog-incidents-1 \
DatadogIncident \
--sort timeToResolve
Scan a week of 5-minute intervals across 50+ hosts to find who’s running hot.
MCP Time-series data — a week of 5-min intervals for 50 hosts is millions of data points. Impractical for a context window.
$ max search \
datadog-metrics-1 \
--filter 'cpu > 80' \
--fields host,cpu,memory
Search every issue and comment across all projects — cycle time, stale tickets, and workload in one query.
MCP Paginated JQL at 100/page. Comments require N+1 calls per issue. Cross-project queries hit rate limits fast.
$ max search \
jira-1 \
JiraIssue \
--sort updated | head
Query every channel, user, and message from a standard Slack export zip — no API token needed.
MCP No MCP server for export files. Thousands of JSON files across hundreds of channels. Too much raw data for a context window.
$ max search \
slack-export-1 \
SlackMessage \
--sort ts | head