Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-jasonwilbur-oci-pricing-mcp": {
"args": [
"-y",
"oci-pricing-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides Oracle Cloud Infrastructure pricing data to AI assistants like Claude.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'oci-pricing-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked oci-pricing-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP server for Hostinger API
Apideck Unified API MCP — 229 tools across 200+ SaaS connectors (accounting, HRIS, file storage).
MCP Security Weekly
Get CVE alerts and security updates for io.github.jasonwilbur/oci-pricing-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides Oracle Cloud Infrastructure pricing data to AI assistants like Claude.
Important Note: This server provides pricing data from Oracle's public pricing API and bundled data. We cannot guarantee that AI assistants will always interpret pricing correctly or identify the absolute cheapest options. Always verify pricing on Oracle's official price list before making decisions. All API calls are free of charge (no authentication required).
AWS, Azure, and GCP all have pricing MCP servers. OCI did not - until now.
| Provider | Pricing MCP | Type |
|---|---|---|
| AWS | aws-pricing-mcp-server | Official |
| Azure | azure-pricing-mcp | Community |
| GCP | gcp-cost-mcp-server | Community |
| OCI | oci-pricing-mcp | Community |
You ask Claude:
What's the monthly cost for a VM with 4 OCPUs and 32GB RAM on OCI?
Claude responds (using this MCP):
For a VM.Standard.E5.Flex with 4 OCPUs and 32GB RAM:
OCPU cost: 4 OCPUs × $0.03/hr = $0.12/hr
Memory cost: 32 GB × $0.002/hr = $0.064/hr
Total hourly: $0.184/hr
Monthly cost (730 hrs): $134.32
For comparison, the Arm-based A1 shape would be significantly cheaper:
A1 total: 4 × $0.01 + 32 × $0.0015 = $0.088/hr
Monthly: $64.24 (52% savings)
You ask Claude:
How much would I save on OCI vs AWS for 5TB of monthly data egress?
Claude responds (using this MCP):
Data Egress Cost Comparison (5 TB/month):
OCI:
First 10 TB free → $0.00
AWS:
First 10 GB: free
Next 9.99 TB @ $0.09/GB → ~$450/month
Monthly savings with OCI: $450 (100% savings)
OCI includes 10 TB of free outbound data transfer monthly,
making it significantly more cost-effective for data-heavy workloads.
claude mcp add oci-pricing -- npx -y oci-pricing-mcp
Add this to your claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json), then restart Claude Desktop:
{
"mcpServers": {
"oci-pricing": {
"command": "npx",
"args": ["-y", "oci-pricing-mcp"]
}
}
}
git clone https://github.com/jasonwilbur/oci-pricing-mcp.git
cd oci-pricing-mcp
npm install
npm run build
claude mcp add oci-pricing -- node /path/to/oci-pricing-mcp/dist/index.js
| Tool | Description |
|---|---|
get_pricing | Get pricing for any OCI resource by service/type |
list_services | List all OCI services with pricing categories |
compare_regions | Compare pricing across regions (OCI has consistent global pricing) |
list_regions | List all available OCI regions |
calculate_monthly_cost | Estimate monthly spend for a configuration |
quick_estimate | Get cost estimates for common deployment presets |