INDIVIDUAL MCP TOOL
get_cost_entries
Fetch raw per-service cost entries for this account over a date range (unaggregated).
LIVE ENDPOINT
https://console.plutus-cloud.com/api/mcp
Connect to this endpoint to inspect the live schema for get_cost_entries and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.plutus-cost-data]
url = "https://console.plutus-cloud.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"plutus-cost-data": {
"type": "http",
"url": "https://console.plutus-cloud.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: plutus-cost-data
Remote MCP URL: https://console.plutus-cloud.com/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"plutus-cost-data": {
"url": "https://console.plutus-cloud.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"plutus-cost-data": {
"type": "http",
"url": "https://console.plutus-cloud.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "plutus-cost-data",
"transport": "streamable-http",
"url": "https://console.plutus-cloud.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_cost_sources— List the cost-source providers (AWS, GCP, Anthropic, etc.query_costs— Query time-bucketed spend for this account, optionally broken down by a dimension (service, region, linked_account, usage_type, operation, or identity) or by a custom cost-allocation tag (see list_cost_tags), and filtered by dimension values.list_savings_recommendations— List active cost-reduction recommendations for this account — sourced from each provider's own already-computed engine (AWS Cost Explorer, Azure Advisor, GCP Recommender), not something Plutus computes itself.list_commitment_utilization— List Reservation (RI) and Savings Plan utilization/coverage snapshots for this account — sourced from AWS Cost Explorer's own GetReservationUtilization/GetSavingsPlansUtilization APIs, one snapshot per commitment type per month.list_cost_tags— List the virtual cost-allocation tag_keys defined for this account (e.list_anomalies— List detected cost anomalies for this account over a trailing lookback window — the real output of Plutus's nightly anomaly detector (severity, baseline vs.list_anomaly_suppressions— List this account's active anomaly suppressions — signatures (a provider+service pair, or a tag_key+tag_value) a human has marked as expected, so the detector stops surfacing them.list_tag_recommendations— List suggested cost-allocation tag rules this account doesn't have yet — high-spend values currently falling through to "Untagged" for an existing tag_key, or a provider-native tag worth promoting into a virtual tag_key of its own (see list_cost_tags).