← ClaudeAtlas

oracle-mcp-usage-guidelisted

How to use Oracle MCP tools in Claude Code for consultation, memory, messaging, and task tracking
OraclePersonal/Oracle · ★ 0 · AI & Automation · score 65
Install: claude install-skill OraclePersonal/Oracle
# Oracle MCP Usage Guide Oracle gives you access to 60+ MCP tools for multi-agent coordination, persistent memory, and autonomous consultation. Use these tools to: ## Quick Reference ### 💬 Ask a Question (with context) ``` oracle_ask { question: "Why is the Dashboard slow?", files: ["src/**/*.ts"], conversationId: "session-123" // optional: recall prior Q&A } ``` **Returns:** Grounded answer citing code + memory + web + docs --- ### 🧠 Memory Management Save facts that persist across sessions: ``` // Save a fact oracle_memory_remember { content: "Service X uses connection pool with 50 max connections", tags: ["database", "performance", "service-x"] } // Search memory oracle_memory_search { query: "What databases do we use?", limit: 5 } // See related facts (entity graph) oracle_memory_graph_query { entity: "Service X", depth: 2 } ``` --- ### 📨 Message Other Agents Send/receive messages for coordination: ``` // Register yourself oracle_msg_register { name: "claude-code-worker-1", role: "backend developer" } // Send a message oracle_msg_send { to: "claude-code-worker-2", body: "I've finished the auth refactor, ready for integration test" } // Check inbox oracle_msg_inbox { agent: "claude-code-worker-1" } // Mark as read oracle_msg_ack { ids: ["msg-id-123", "msg-id-456"] } // Broadcast to everyone oracle_msg_send { to: "*", body: "Starting deployment in 10 minutes" } ``` --- ### ✅ Task Planning & Verification Create, tra