{"id":28918322,"url":"https://github.com/scripterio-js/scripterio-mcp","last_synced_at":"2026-04-27T18:31:24.469Z","repository":{"id":300053076,"uuid":"1004939388","full_name":"scripterio-js/scripterio-mcp","owner":"scripterio-js","description":"ScripterI/O MCP server","archived":false,"fork":false,"pushed_at":"2025-06-19T16:54:53.000Z","size":11,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-30T16:37:29.460Z","etag":null,"topics":["api","mcp","mcp-client","mcp-server","testing"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/scripterio-js.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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-06-19T12:09:43.000Z","updated_at":"2025-06-19T16:54:56.000Z","dependencies_parsed_at":"2025-06-19T17:01:14.662Z","dependency_job_id":"289e8b20-fb78-463c-91c6-f2f5e13dd37a","html_url":"https://github.com/scripterio-js/scripterio-mcp","commit_stats":null,"previous_names":["scripterio-js/scripterio-mcp"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/scripterio-js/scripterio-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scripterio-js%2Fscripterio-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scripterio-js%2Fscripterio-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scripterio-js%2Fscripterio-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scripterio-js%2Fscripterio-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scripterio-js","download_url":"https://codeload.github.com/scripterio-js/scripterio-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scripterio-js%2Fscripterio-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32349348,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T17:12:42.749Z","status":"ssl_error","status_checked_at":"2026-04-27T17:12:41.658Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["api","mcp","mcp-client","mcp-server","testing"],"created_at":"2025-06-22T02:02:40.864Z","updated_at":"2026-04-27T18:31:24.464Z","avatar_url":"https://github.com/scripterio-js.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ScripterI/O MCP Server\n\nThe **ScripterI/O MCP Server** enables **LLMs** and agents to interact with HTTP APIs and automate test scenarios using the Model Context Protocol (MCP). With ScripterI/O MCP, you can send HTTP requests, validate responses, and script API-driven workflows.\n\n## 🌟 Key Features\n\n✅ **Send HTTP requests (GET, more coming soon)**  \n✅ **Automate API test scenarios**  \n✅ **LLM-friendly, easy to extend**\n\n---\n\n## 🔧 Use Cases (Tools)\n\n### 1. **`get`**\n\nSend a GET request to any URL and return the response object (status, headers, body).\n\n**Prompt Example:**\n\n```plaintext\nAct as a ScripterI/O\n- Proceed with test scenario using tools provided by scripterio-mcp\n\nAPI specifications and logic.\nTest Scenario:\nEndpoint: Send a GET request to https://api.restful-api.dev/objects/7.\n\nValidation Criteria:\nConfirm the response contains the correct status code (e.g., 200).\nValidate that the returned response data matches the expected data structure or values:\n{\n  \"id\": \"7\",\n  \"name\": \"Apple MacBook Pro 16\",\n  \"data\": {\n    \"year\": 2019,\n    \"price\": 1849.99,\n    \"CPU model\": \"Intel Core i9\",\n    \"Hard disk size\": \"1 TB\"\n  }\n}\n\n```\n\n---\n\n## 🛠️ How It Works\n\n- The server exposes a `get` tool for sending HTTP GET requests.\n- The tool returns the status code, headers, and parsed JSON body.\n- Designed for integration with LLM agents and automated test scenarios.\n\n---\n\n## ⚙️ Configuration\n\nTo configure the ScripterI/O MCP server in VS Code, update your **User Settings (JSON)**:\n\n```json\n{\n  \"mcp\": {\n    \"servers\": {\n      \"scripterio-mcp\": {\n        \"command\": \"npx\",\n        \"args\": [\"scripterio-mcp\"]\n      }\n    }\n  }\n}\n```\n\n---\n\n## 🚀 Installation \u0026 Usage\n\n#### Installation in VS Code\n\nYou can install the JSON MCP server using the VS Code CLI:\n\n```bash\n# For VS Code\ncode --add-mcp '{\"name\":\"scripterio-mcp\",\"command\":\"npx\",\"args\": [\"scripterio-mcp@latest\"]}'\n```\n\n### ⚙️ Installation Server\n\n#### Install globally\n\n```bash\nnpm install -g scripterio-mcp@latest\n```\n\n#### Run after global installation\n\n```bash\nscripterio-mcp\n```\n\n#### Using npx with latest version (recommended)\n\n```bash\nnpx scripterio-mcp@latest\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscripterio-js%2Fscripterio-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscripterio-js%2Fscripterio-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscripterio-js%2Fscripterio-mcp/lists"}