Agent skill
mongodb_usage
This skill should be used when user asks to "query MongoDB", "show database collections", "get collection schema", "list MongoDB databases", "search records in MongoDB", or "check database indexes".
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/mongodb-usage-vuralserhat86-antigravity-agentic
Metadata
Additional technical details for this skill
- skillport
-
{ "tags": [ "aggregation", "big data", "cleaning", "csv", "data analysis", "data engineering", "data science", "database", "documents", "etl pipelines", "export", "import", "json", "machine learning basics", "migration", "mongodb usage", "mongoose", "nosql", "numpy", "pandas", "python data stack", "query optimization", "reporting", "schema design", "sharding", "sql", "statistics", "transformation", "visualization" ], "category": "auto-healed" }
SKILL.md
MongoDB MCP Usage
Use the MongoDB MCP server to integrate database queries into workflows.
Read-Only Access
MongoDB MCP is configured in read-only mode. Only queries and data retrieval are supported. No write, update, or delete operations.
Database Queries
Use mcp__mongodb__* tools for:
- Listing databases
- Viewing collection schemas
- Querying collection data
- Analyzing indexes
Integration Pattern
- List available databases with
mcp__mongodb__list_databases - Explore collections with
mcp__mongodb__list_collections - Get schema information with
mcp__mongodb__get_collection_schema - Query data as needed for analysis
- Format results for user consumption
Environment Variables
MongoDB MCP requires:
MONGODB_URI- Connection string (mongodb://...)
Configure in shell before using the plugin.
Cost Considerations
- Minimize database calls when possible
- Use schema queries before running analysis queries
- Cache results locally if multiple calls needed MongoDB Usage v1.1 - Enhanced
🔄 Workflow
Aşama 1: Discovery & Inspection
- Connection:
mcp__mongodb__list_databasesile erişimi doğrula. - Schema Analysis:
mcp__mongodb__get_collection_schemaile veri tiplerini ve yapıyı anla. - Index Check: Mevcut indeksleri listele (
list_indexesveya benzeri sorgu ile).
Aşama 2: Query Construction
- Filter: Sorguları indeksli alanlar (Prefix) üzerinden filtrele.
- Projection: Sadece gerekli alanları (
{ field: 1 }) seç (Network ve RAM tasarrufu). - Aggregation: Karmaşık analizler için
$match,$group,$projectpipeline'ını kur.
Aşama 3: Performance Check (Explain Plan)
- Explain: Sorgunun
COLLSCAN(Tam tarama) mıIXSCAN(Index tarama) mı yaptığını kontrol et. - Optimization: Yavaş sorgular için bileşik indeks (Compound Index) öner.
Kontrol Noktaları
| Aşama | Doğrulama |
|---|---|
| 1 | Sorgu 100ms'in altında cevap veriyor mu? |
| 2 | "In-memory sort" limiti aşılıyor mu (disk kullanımı var mı)? |
| 3 | Regex sorguları indeksin başlangıcını (anchor ^...) kullanıyor mu? |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?