{
"mcpServers": {
"autotestid-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AutoTestID Workflow MCP Server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 211 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for AutoTestID MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) server implementing two-phase AutoTestID workflow for automated testing with accessibility-first approach.
AutoTestID Workflow MCP Server provides the autotestid_workflow tool that implements a sophisticated two-phase approach:
aria-first or test-attribute-firstAutoTestId.McpServer/
├── AutoTestId.McpServer.csproj # Project configuration
├── Program.cs # Application entry point
├── McpServer.cs # MCP protocol implementation
├── TestIdTools.cs # Two-phase AutoTestID workflow
├── tech_prompts/
│ └── add_test_id_prompt.md # Comprehensive workflow template
└── README.md # This guide
Build the Project:
dotnet build
dotnet run
Configure VS Code MCP: Add to your VS Code MCP configuration:
{
"servers": {
"autotestid-workflow": {
"type": "stdio",
"command": "dotnet",
"args": ["run", "--project", "path/to/AutoTestId.McpServer.csproj"]
}
}
}
Use the Tool:
#autotestid_workflow [your HTML]#autotestid_workflow (recommended for larger files)Use the tool through GitHub Copilot Chat with the two-phase workflow:
Method A - Direct HTML Input:
#autotestid_workflow Add locators to this HTML:
<div><button>Save</button><input type="email"></div>
Method B - Using HTML File Context (Recommended):
component.html, modal.html)#autotestid_workflow Apply AutoTestID workflow to the current HTML file
This method automatically uses the open file as context, making it perfect for:
Option A - ARIA-First (Recommended):
aria-first
data-testid when ARIA is insufficientOption B - Test-Attribute-First:
test-attribute-first
data-testid to all interactive elementsPurpose: Comprehensive AutoTestID workflow for Angular/AngularJS applications
Two Strategies Available:
aria-label, role attributes