Install guide and config at curatedmcp.com
Oracle Cloud MCP: Automate OCI Infrastructure from Your AI Agent
Enterprise teams running Oracle Cloud Infrastructure (OCI) now have a direct path to AI-assisted cloud operations. Oracle Cloud MCP is the official Model Context Protocol server that connects AI agents like Claude and Cursor to your OCI environment—letting you provision compute, manage databases, handle storage, and configure security entirely through natural language.
What It Does
This is a native integration between your AI agent and OCI's full service catalog. Instead of switching between your editor, the OCI console, and CLI tools, you describe what you need and the server handles the REST API calls.
The server unlocks these capabilities:
- Compute: Provision and manage VM instances with specific shapes and configurations
- Storage: Create and manage Object Storage buckets, upload/download objects
- Databases: Query Autonomous Database instances and traditional DB systems
- Networking: Inspect Virtual Cloud Networks (VCNs), security lists, and firewall rules
- Identity & Access: Create users, manage IAM policies, enforce least-privilege access
- Audit & Security: Pull audit logs and security reports for compliance tracking
For teams managing multi-instance deployments or complex database configurations, this eliminates repetitive console navigation and CLI command lookups.
How to Install
Install via npm:
npx -y @oracle/mcp
Then add it to your Claude Desktop configuration (find this file at ~/.config/Claude/claude_desktop_config.json on Linux/Mac or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"oracle-cloud-mcp": {
"command": "npx -y @oracle/mcp"
}
}
}
You'll need OCI credentials configured in your environment (typically via ~/.oci/config). Restart Claude Desktop and the server connects automatically.
Real-World Use Cases
- Infrastructure as Conversation: "Create a new compute instance with 2 OCPUs in my production VCN, add it to the web-tier security group, and return the IP address"—executed entirely through Claude.
- Database Diagnostics: Query your Autonomous Database for slow queries, check storage metrics, and generate a performance report without touching the console.
- Compliance Automation: Pull audit logs for the last 30 days, filter for identity changes, and generate a summary report for your security team.
Full install guides for Claude Desktop, Cursor, Windsurf, and more at CuratedMCP.
Top comments (0)