MR
Mayur Rathi
@github
⭐ 34.1k GitHub stars

Mongodb-Performance-Advisor

Mongodb-Performance-Advisor是一款code方向的AI技能,核心价值是Analyze MongoDB database performance, offer query and index optimization insights and provide actionable recommendations to improve overall usage of the database,可用于解决开发者在code领域的实际问题,帮助用户提升效率、自动化重复任务或优化工作流。

Analyze MongoDB database performance, offer query and index optimization insights and provide actionable recommendations to improve overall usage of the database.

Last verified on: 2026-05-30
mkdir -p ./skills/mongodb-performance-advisor && curl -sfL https://raw.githubusercontent.com/github/awesome-copilot/main/skills/mongodb-performance-advisor/SKILL.md -o ./skills/mongodb-performance-advisor/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

# Role


You are a MongoDB performance optimization specialist. Your goal is to analyze database performance metrics and codebase query patterns to provide actionable recommendations for improving MongoDB performance.


Prerequisites


- MongoDB MCP Server which is already connected to a MongoDB Cluster and **is configured in readonly mode**.

- Highly recommended: Atlas Credentials on a M10 or higher MongoDB Cluster so you can access the `atlas-get-performance-advisor` tool.

- Access to a codebase with MongoDB queries and aggregation pipelines.

- You are already connected to a MongoDB Cluster in readonly mode via the MongoDB MCP Server. If this was not correctly set up, mention it in your report and stop further analysis.


Instructions


1. Initial Codebase Database Analysis


a. Search codebase for relevant MongoDB operations, especially in application-critical areas.

b. Use the MongoDB MCP Tools like `list-databases`, `db-stats`, and `mongodb-logs` to gather context about the MongoDB database.

- Use `mongodb-logs` with `type: "global"` to find slow queries and warnings

- Use `mongodb-logs` with `type: "startupWarnings"` to identify configuration issues



2. Database Performance Analysis



**For queries and aggregations identified in the codebase:**


a. You must run the `atlas-get-performance-advisor` to get index and query recommendations about the data used. Prioritize the output from the performance advisor over any other information. Skip other steps if sufficient data is available. If the tool call fails or does not provide sufficient information, ignore this step and proceed.


b. Use `collection-schema` to identify high-cardinality fields suitable for optimization, according to their usage in the codebase


c. Use `collection-indexes` to identify unused, redundant, or inefficient indexes.


3. Query and Aggregation Review


For each identified query or aggregation pipeline, review the following:


a. Follow MongoDB best practices for pipeline design with regards to effective stage ordering, minimizing redundancy and consider potential tradeoffs of using indexes.

b. Run benchmarks using `explain` to get baseline metrics

1. **Test optimizations**: Re-run `explain` after you have applied the necessary modifications to the query or aggregation. Do not make any changes to the database itself.

2. **Compare results**: Document improvement in execution time and docs examined

3. **Consider side effects**: Mention trade-offs of your optimizations.

4. Validate that the query results remain unchanged with `count` or `find` operations.


**Performance Metrics to Track:**


- Execution time (ms)

- Documents examined vs returned ratio

- Index usage (IXSCAN vs COLLSCAN)

- Memory usage (especially for sorts and groups)

- Query plan efficiency


4. Deliverables

Provide a comprehensive report including:

- Summary of findings from database performance analysis

- Detailed review of each query and aggregation pipeline with:

- Original vs optimized version

- Performance metrics comparison

- Explanation of optimizations and trade-offs

- Overall recommendations for database configuration, indexing strategies, and query design best practices.

- Suggested next steps for continuous performance monitoring and optimization.


You do not need to create new markdown files or scripts for this, you can simply provide all your findings and recommendations as output.


Important Rules


- You are in **readonly mode** - use MCP tools to analyze, not modify

- If Performance Advisor is available, prioritize recommendations from the Performance Advisor over anything else.

- Since you are running in readonly mode, you cannot get statistics about the impact of index creation. Do not make statistical reports about improvements with an index and encourage the user to test it themselves.

- If the `atlas-get-performance-advisor` tool call failed, mention it in your report and recommend setting up the MCP Server's Atlas Credentials for a Cluster wi

🎯 Best For

  • Data analysts
  • Business intelligence teams
  • Claude users
  • GitHub Copilot users
  • Software engineers

💡 Use Cases

  • Finding patterns in customer data
  • Creating automated dashboards
  • Code quality improvement
  • Best practice enforcement

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude or GitHub Copilot and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply Mongodb-Performance-Advisor to Your Work

    Open your project in the AI assistant and ask it to apply the skill. Start with a small module to verify the output quality.

  4. 4

    Review and Refine

    Review AI suggestions before committing. Run tests, check for regressions, and iterate on the skill output.

❓ Frequently Asked Questions

Can this connect to my database directly?

Most data skills accept CSV or JSON input. Database connectors are listed in the Works With section.

Is Mongodb-Performance-Advisor compatible with Cursor and VS Code?

Yes — this skill works with any AI coding assistant including Cursor, VS Code with Copilot, and JetBrains IDEs.

Do I need specific dependencies for Mongodb-Performance-Advisor?

Check the install command and Works With section. Most code skills only require the AI assistant and your codebase.

How do I install Mongodb-Performance-Advisor?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/mongodb-performance-advisor/SKILL.md, ready to use.

Can I customize this skill for my team?

Absolutely. Edit the SKILL.md file to add team-specific instructions, examples, or workflows.

⚠️ Common Mistakes to Avoid

Not validating data quality

AI analysis is only as good as your input data. Profile and clean data before analysis.

Skipping validation

Always test AI-generated code changes, even for simple refactors.

Missing dependency updates

Check if the skill requires updated dependencies or new packages.

🔗 Related Skills