ai-test, ai-agent, llm, mcp-ai,

MCP - Excel with Claude AI to generate test cases automatically

Donald Donald Follow May 17, 2025 · 2 mins read
MCP - Excel with Claude AI to generate test cases automatically
Share this

Ideas

  • Take advantages of LLM to help us generate test case with a specify template via prompting
  • Integrate MCP to push the generated Test Cases into Excel file, where we use it to manage test cases for a specify project.

Tools and Setup MCP Server

Windows

{
    "mcpServers": {
        "excel": {
            "command": "cmd",
            "args": ["/c", "npx", "--yes", "@negokaz/excel-mcp-server"],
            "env": {
                "EXCEL_MCP_PAGING_CELLS_LIMIT": "4000"
            }
        }
    }
}

MAC / Linux

{
    "mcpServers": {
        "excel": {
            "command": "npx",
            "args": ["--yes", "@negokaz/excel-mcp-server"],
            "env": {
                "EXCEL_MCP_PAGING_CELLS_LIMIT": "4000"
            }
        }
    }
}

walking

Example Prompting to controll MCP Server for testing purpose

You can check this Excel file 
How many sheets in this file ?

walking

walking

As a QA engineer and to prepare an Excel file to cover testing for a mobile app.

Please help me generate the excel template for manage test cases purpose into sheet: Sheet1 in this file:  ?

Generated test cases in Excel walking

Please refactoring all template for my test cases management in excel sheet `Sheet1`.
how it is compatible with BDD Given When Then format.

walking

Besides, Claude AI gave me the BDD test cases template where we can refer, review and request to update more in case AI template is not enough good as we expect. walking

Join Newsletter
Get the latest news right in your inbox. We never spam!
Donald
Written by Donald
Hi, I am Donald (Doai Tran), the author of Testing4Everyone. I hope you like it!