{"id":38611204,"url":"https://github.com/sjinks/wpscan-mcp-server","last_synced_at":"2026-01-17T08:44:43.414Z","repository":{"id":331648348,"uuid":"1131047147","full_name":"sjinks/wpscan-mcp-server","owner":"sjinks","description":"MCP Server for the WPScan (wpscan.com) API","archived":false,"fork":false,"pushed_at":"2026-01-10T16:10:00.000Z","size":81,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-11T04:29:13.790Z","etag":null,"topics":["mcp","mcp-server","security","vibe-coding","wpscan"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@wwa/wpscan-mcp","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/sjinks.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"custom":["https://www.paypal.com/donate/?hosted_button_id=SAG6877JDJ3KU","https://send.monobank.ua/jar/7rosVfiwKM"]}},"created_at":"2026-01-09T11:49:07.000Z","updated_at":"2026-01-10T16:22:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sjinks/wpscan-mcp-server","commit_stats":null,"previous_names":["sjinks/wpscan-mcp-server"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/sjinks/wpscan-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sjinks%2Fwpscan-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sjinks%2Fwpscan-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sjinks%2Fwpscan-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sjinks%2Fwpscan-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sjinks","download_url":"https://codeload.github.com/sjinks/wpscan-mcp-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sjinks%2Fwpscan-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28504460,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"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":["mcp","mcp-server","security","vibe-coding","wpscan"],"created_at":"2026-01-17T08:44:42.878Z","updated_at":"2026-01-17T08:44:43.402Z","avatar_url":"https://github.com/sjinks.png","language":"JavaScript","funding_links":["https://www.paypal.com/donate/?hosted_button_id=SAG6877JDJ3KU","https://send.monobank.ua/jar/7rosVfiwKM"],"categories":[],"sub_categories":[],"readme":"# wpscan-mcp\n\nAn MCP server (TypeScript) that exposes a few tools for the **WPScan (wpscan.com) API v3**.\n\n## Requirements\n\n- Node.js \u003e= 18\n- A WPScan API token\n\n## Setup\n\n### Node.js\n\n```bash\nnpm install\n```\n\nSet your token:\n\n```bash\nexport WPSCAN_API_TOKEN=\"...\"\n```\n\nBuild \u0026 run:\n\n```bash\nnpm run build\nnode dist/index.js\n```\n\n### Bun\n\nInstall dependencies and compile:\n\n```bash\nbun install\nbun run compile\n```\n\nSet your token:\n\n```bash\nexport WPSCAN_API_TOKEN=\"...\"\n```\n\nRun:\n\n```bash\n./wpscan-mcp\n```\n\nIf, for some reason, compilation does not work:\n\n```bash\nbun install\nbun run build\nexport WPSCAN_API_TOKEN=\"...\"\nbun run dist/index.js\n```\n\n## Type generation (optional)\n\nThis project can generate TypeScript types directly from the WPScan OpenAPI spec:\n\n```bash\n# Node.js:\nnpm run generate-types\n\n# Bun:\nbun run generate-types\n```\n\nNotes:\n- The OpenAPI spec is fetched from `https://wpscan.com/docs/api/v3/v3.yml/`.\n\n## MCP tools\n\n- `wpscan_plugin_lookup`\n  - Args: `{ slug: string, version?: string }`\n- `wpscan_theme_lookup`\n  - Args: `{ slug: string, version?: string }`\n- `wpscan_core_lookup`\n  - Args: `{ version: number }`\n  - Note: WPScan expects the WordPress version with dots removed (e.g. `6.4.2` → `642`).\n- `wpscan_lookup_vuln`\n  - Args: `{ wpvdbId: string }` (e.g. `WPVDB-ID-12345`)\n\n## Usage with an MCP client\n\nThis server uses stdio transport.\n\n### Example: Claude Desktop config\n\nAdd a server entry to your Claude Desktop MCP config (path varies by OS). Example:\n\n```json\n{\n  \"mcpServers\": {\n    \"wpscan\": {\n      \"command\": \"node\",\n      \"args\": [\"/path/to/wpscan-mcp/dist/index.js\"],\n      \"env\": {\n        \"WPSCAN_API_TOKEN\": \"YOUR_TOKEN_HERE\"\n      }\n    }\n  }\n}\n```\n\nThen restart the client so it picks up the new MCP server.\n\n### Example: VSCode\n\n#### Bun\n\nCreate `.vscode/mcp.json`:\n\n```json\n{\n  \"servers\": {\n    \"wpscan\": {\n      \"type\": \"stdio\",\n      \"command\": \"${workspaceFolder}/wpscan-mcp\",\n      \"args\": [],\n      \"env\": {\n        \"WPSCAN_API_TOKEN\": \"YOUR_TOKEN_HERE\"\n      }\n    }\n  }\n}\n```\n\n#### Node.js\n\n```json\n{\n  \"servers\": {\n    \"wpscan\": {\n      \"type\": \"stdio\",\n      \"command\": \"node\",\n      \"args\": [\"${workspaceFolder}/dist/index.js\"],\n      \"env\": {\n        \"WPSCAN_API_TOKEN\": \"YOUR_TOKEN_HERE\"\n      }\n    }\n  }\n}\n```\n\n## Tool call examples\n\n- Plugin lookup:\n\n```json\n{ \"slug\": \"woocommerce\" }\n```\n\n- Theme lookup (specific version):\n\n```json\n{ \"slug\": \"astra\", \"version\": \"4.6.3\" }\n```\n\n- Core lookup (WordPress 6.4.2 → 642):\n\n```json\n{ \"version\": 642 }\n```\n\n- Vulnerability lookup:\n\n```json\n{ \"wpvdbId\": \"WPVDB-ID-12345\" }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsjinks%2Fwpscan-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsjinks%2Fwpscan-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsjinks%2Fwpscan-mcp-server/lists"}