{"id":28946139,"url":"https://github.com/martinpsdev/curl-mcp","last_synced_at":"2026-04-13T18:01:39.446Z","repository":{"id":290380172,"uuid":"974245586","full_name":"MartinPSDev/curl-mcp","owner":"MartinPSDev","description":"MCP server that translates natural language instructions into curl commands, supporting both English and Spanish","archived":false,"fork":false,"pushed_at":"2025-04-30T01:42:56.000Z","size":100,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T06:55:53.210Z","etag":null,"topics":["bugbounty","command-line","curl","cybersecurity","infosec","mcp","penetration-testing","recon"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MartinPSDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-04-28T13:30:06.000Z","updated_at":"2025-09-29T02:26:00.000Z","dependencies_parsed_at":"2025-04-28T14:45:56.992Z","dependency_job_id":"405f52d0-e9f2-4dd6-9229-63643b2265bd","html_url":"https://github.com/MartinPSDev/curl-mcp","commit_stats":null,"previous_names":["martinpsdev/curl-mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MartinPSDev/curl-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MartinPSDev%2Fcurl-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MartinPSDev%2Fcurl-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MartinPSDev%2Fcurl-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MartinPSDev%2Fcurl-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MartinPSDev","download_url":"https://codeload.github.com/MartinPSDev/curl-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MartinPSDev%2Fcurl-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31764317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: 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":["bugbounty","command-line","curl","cybersecurity","infosec","mcp","penetration-testing","recon"],"created_at":"2025-06-23T08:02:19.841Z","updated_at":"2026-04-13T18:01:39.437Z","avatar_url":"https://github.com/MartinPSDev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Curl MCP - Natural Language Curl Commander\n\nExecute curl commands using natural language in English and Spanish.\n\n## Prerequisites\n\n- Python 3.13 or higher\n- curl (usually pre-installed on Linux)\n- Git\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/MartinPSDev/curl-mcp.git\ncd curl-mcp\n```\n\n2. Create and activate a virtual environment:\n```bash\npython3 -m venv .env\nsource .env/bin/activate\n```\n\n3. Install dependencies:\n```bash\npip install -r requirements.txt\n```\n\n4. Start the MCP server:\n```bash\npython3 main.py\n```\n\n\u003cimg src=\"./demo.png\" width=\"70%\" height=\"70%\" alt=\"demo\"\u003e\n\n## Configuration\n\nAdd this to your MCP settings:\n\n```json\n{\n    \"mcpServers\": {\n        \"curl-mcp\": {\n            \"command\": \"/usr/bin/python3\",\n            \"args\": [\n                \"/path/to/your/curl-mcp/main.py\"\n            ],\n            \"env\": {\n                \"PYTHONPATH\": \"/path/to/your/curl-mcp/.env/lib/python3.11/site-packages\"\n            }\n        }\n    }\n}\n```\n\nNote: Replace `/path/to/your/curl-mcp` with the actual path where you cloned the repository.\n\n## Usage\n\n1. Start the MCP server:\n```bash\npython3 main.py\n```\n\n2. The server can now receive natural language commands in English or Spanish. Here are some examples:\n\n### Basic Examples:\n- \"Get headers from https://example.com\"\n- \"Show raw response from https://api.example.com\"\n- \"Download https://example.com and save as page.html\"\n\n### Advanced Examples:\n- Headers and Authentication:\n  - \"Make a request to https://api.example.com with header Authorization: Bearer mytoken\"\n  - \"Get https://api.example.com using basic auth user:password\"\n\n- Data Handling:\n  - \"POST to https://api.example.com/users with data name=John and age=25\"\n  - \"Send form data to https://upload.example.com with file image.jpg\"\n  - \"POST urlencoded data user=test+name to https://api.example.com\"\n\n- Security and Options:\n  - \"Get https://example.com ignoring SSL verification\"\n  - \"Request https://api.example.com with timeout 30 seconds\"\n  - \"Get https://example.com through proxy localhost:8080\"\n\n- User Agents:\n  - \"Get https://example.com as Chrome\"\n  - \"Request https://mobile.example.com as iPhone\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartinpsdev%2Fcurl-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmartinpsdev%2Fcurl-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartinpsdev%2Fcurl-mcp/lists"}