{"id":29891201,"url":"https://github.com/sourcefuse/robotframework-mcp","last_synced_at":"2025-08-04T03:04:39.908Z","repository":{"id":307446283,"uuid":"1027496777","full_name":"sourcefuse/robotframework-mcp","owner":"sourcefuse","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-31T17:29:46.000Z","size":40,"stargazers_count":4,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-01T00:54:20.598Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sourcefuse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-28T05:25:52.000Z","updated_at":"2025-07-31T18:30:03.000Z","dependencies_parsed_at":"2025-07-31T11:22:18.268Z","dependency_job_id":null,"html_url":"https://github.com/sourcefuse/robotframework-mcp","commit_stats":null,"previous_names":["sourcefuse/robotframework-mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sourcefuse/robotframework-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcefuse%2Frobotframework-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcefuse%2Frobotframework-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcefuse%2Frobotframework-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcefuse%2Frobotframework-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sourcefuse","download_url":"https://codeload.github.com/sourcefuse/robotframework-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcefuse%2Frobotframework-mcp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268322125,"owners_count":24231816,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-01T00:08:28.697Z","updated_at":"2025-08-04T03:04:39.897Z","avatar_url":"https://github.com/sourcefuse.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Robot Framework MCP Server\n\nA Model Context Protocol (MCP) server for Robot Framework test automation with custom features\n\n## Features\n\n- 🤖 Generate Robot Framework test cases with SeleniumLibrary\n- 📄 Create page object models for web testing\n- ⚡ Advanced Selenium keywords for common web interactions\n- 📸 Screenshot capabilities and performance monitoring\n- 🎯 Input validation and configurable selectors\n- 📊 Performance monitoring and metrics collection\n- 🔄 Data-driven testing templates\n- 🌐 API integration testing capabilities\n\n## Quick Demo Video\n\n\nhttps://github.com/user-attachments/assets/47ef8f7b-e3f5-413c-b09f-40168a9d4b44\n\n\n## Prerequisites\n\n- **Python 3.10 or higher**\n- **Node.js 14.0 or higher** (for npx method)\n- **UV** (for UV method - optional but recommended)\n- Git (for installation from repository)\n\n## Installation \u0026 Usage\n\n### Method 1: Using npx (Node.js Package Manager)\n\nAdd to your MCP client configuration (e.g., `mcp.json`) in your **VS code or VS code insider**:\n\n```json\n{\n  \"servers\": {\n    \"robotframework-mcp\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"git+https://github.com/sourcefuse/robotframework-MCP.git\"\n      ],\n      \"type\": \"stdio\"\n    }\n  }\n}\n```\n### Method 2: Install from PyPI \n\n```bash\n# Install the package\npip3 install robotframework-mcp\n\n# Run the MCP server\nrobotframework-mcp\n```\n\n**For MCP Clients (VS code or VS code inside, etc.):**\n\n```json\n{\n  \"mcpServers\": {\n    \"robotframework-mcp\": {\n      \"command\": \"robotframework-mcp\",\n      \"type\": \"stdio\"\n    }\n  }\n}\n```\n\n### Method 3: Using UV \n\nFirst install UV:\n```bash\n# Install UV (choose one method)\ncurl -LsSf https://astral.sh/uv/install.sh | sh  # Unix/macOS\n# OR\npip install uv  # Any platform\n# OR on Windows PowerShell (as Administrator)\npowershell -c \"irm https://astral.sh/uv/install.ps1 | iex\"\n```\n\nThen add to your MCP configuration:\n\n```json\n{\n  \"servers\": {\n    \"robotframework-mcp\": {\n      \"command\": \"uv\",\n      \"args\": [\n        \"run\",\n        \"--with\",\n        \"git+https://github.com/sourcefuse/robotframework-MCP.git\",\n        \"python\",\n        \"-c\",\n        \"import mcp_server; mcp_server.main()\"\n      ],\n      \"type\": \"stdio\"\n    }\n  }\n}\n```\n\n## Available Tools\n\nThe MCP server provides the following comprehensive tools for Robot Framework test automation:\n\n### 🔧 Core Test Generation\n- **`create_login_test_case(url, username, password, template_type=\"appLocator\")`** - Generate validated login test with configurable selectors\n- **`create_page_object_login(template_type=\"appLocator\")`** - Generate login page object model with validation\n- **`create_data_driven_test(test_data_file=\"test_data.csv\")`** - Generate data-driven test templates\n- **`create_api_integration_test(base_url, endpoint, method=\"GET\")`** - Generate API + UI integration tests\n\n### ⚡ Advanced Keywords\n- **`create_advanced_selenium_keywords()`** - Generate advanced SeleniumLibrary keywords (dropdowns, checkboxes, file uploads, alerts, etc.)\n- **`create_extended_selenium_keywords()`** - Generate extended keywords with screenshots, performance monitoring, and window management\n\n### 📊 Performance \u0026 Monitoring\n- **`create_performance_monitoring_test()`** - Generate comprehensive performance testing with metrics collection\n\n### 🔍 Validation \u0026 Syntax\n- **`validate_robot_framework_syntax(robot_code)`** - Validate Robot Framework syntax and provide improvement suggestions\n\n### 📋 Template Options\n\nThe server supports multiple selector templates for different applications:\n\n- **`appLocator`** (default) - For web apps\n- **`generic`** - Generic web application selectors\n- **`bootstrap`** - Bootstrap-based applications\n\n### 🎯 Input Validation\n\nAll tools include comprehensive input validation:\n- URL validation with protocol checking\n- Credential sanitization and length limits\n- Selector format validation\n- Safe variable substitution in templates\n\n\n### 🤝 Contributing\nContributions are welcome!\nTo contribute:\n - Fork the repository\n - Create a new branch\n - Submit a pull request with a detailed description\n\n### 📬 Contact\n Name: Meenu Rani\n Email: meenu.rani@sourcefuse.com\n GitHub: meenurani1\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\nCopyright (c) 2025 Sourcefuse\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourcefuse%2Frobotframework-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsourcefuse%2Frobotframework-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourcefuse%2Frobotframework-mcp/lists"}