Scan any public GitHub MCP-server repo for security issues. 37 MCP-specific L1 rules, 8 languages.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Scan-as-a-Service for MCP servers. HTTP + MCP wrapper around compuute-scan β the MCP-specific static security scanner. Designed for agent-callable consumption.
POST a public GitHub repo URL β get a structured security report scored against 38 MCP-specific rules across 8 languages (TS/JS, Python, Go, Rust, C#, Java, Kotlin).
Honesty note (read first): compuute-scan is a pattern-breadth detector, not an exploitability oracle. Historic false-positive rate after manual validation is ~90% on raw output (verified against modelcontextprotocol/servers: 138 raw findings β 13 confirmed). Every response carries a
_disclaimerfield stating this explicitly. Use findings as a triage queue, not as a list of confirmed vulnerabilities. See docs/FP-RATES.md for per-rule transparency.
Live at https://scan.compuute.se. Service version reported by /v1/health.
| Method | Path | Purpose | Auth |
|---|---|---|---|
| POST | /v1/scan | Scan a public GitHub MCP-server repo (free tier, rate-limited) | none |
| POST | /v1/scan/pay | Same as above via x402 micropayment ($0.10 USDC on Base L2) | X-Payment header |
POST /v1/scan/pay with no body to read the payment requirements without paying β the request body is optional precisely so discovery probes reach the 402 instead of body validation. Verify with the Coinbase Agentic Wallet CLI:
| GET | /v1/scan/info | Scanner version + limits + supported ecosystems | none |
| GET | /v1/health | Liveness + scanner-binary availability | none |
| Method | Path | Purpose |
|---|---|---|
| GET | /openapi.json | OpenAPI v3 spec with per-field descriptions |
| GET | /docs | Swagger UI for the OpenAPI spec |
| Endpoint | Tool | Transport |
|---|---|---|
/mcp/ | scan_mcp_server(github_url) | Streamable HTTP |
Install in Claude Code: claude mcp add compuute-scan --transport http --url https://scan.compuute.se/mcp/
/.well-known/)| Path | Format | Consumer |
|---|---|---|
/.well-known/agent-card.json | A2A v1.0 Agent Card (canonical) | A2A protocol clients |
/.well-known/agent.json | A2A Agent Card (alias) | pre-1.0 A2A clients/crawlers |
/.well-known/ai-plugin.json | OpenAI plugin manifest | ChatGPT / OpenAI tools |
/.well-known/x402.json | x402 payment manifest | Coinbase Agent.market crawlers, x402 aggregators |
/.well-known/x402 | Alias of x402.json | x402 probes without .json suffix |
/llms.txt | markdown summary | LLM-driven agent-search crawlers (Exa, Perplexity-style) per llmstxt.org |
/robots.txt | crawler policy | search engines |
/sitemap.xml | URL index | search engines |
Response (truncated):
| Feature | How |
|---|---|
| Idempotent retries (24h cache) | Idempotency-Key header |
| HTTP cache | ETag + Cache-Control: public, max-age=1800 |
| Conditional GET | If-None-Match β 304 Not Modified |
| Rate-limit headers | X-RateLimit-Limit/Remaining/Reset |
| Strict input validation | Pydantic extra="forbid", GitHub-HTTPS-only |
| OWASP security headers | HSTS / X-Frame-Options / X-Content-Type-Options / CSP / Referrer-Policy / Permissions-Policy |
| OpenAPI for discovery | GET /openapi.json with descriptions on every field |
| MCP for agent discovery | /mcp/ exposes scan_mcp_server tool |
| x402 for autonomous purchase | /v1/scan/pay returns 402 with USDC/Base payment requirements |
| Honest framing | Every response carries _disclaimer β pattern match, not exploitability claim |
| Tier | Audience | Price |
|---|---|---|
| Open Source CLI | Indie devs, agent builders | $0 β npx compuute-scan ./repo |
| Hosted API (free) | Agent operators evaluating MCP servers | $0 β POST /v1/scan, rate-limited |
| Hosted API (x402) | Autonomous agents in Agent.market ecosystem | $0.10 USDC/scan β POST /v1/scan/pay |
| MCP Security Audit | Enterprises shipping MCP to production | $5Kβ$30K SoW |
| AI Procurement Risk Audit | CFO/CTO/CISO buying enterprise AI capacity | $5Kβ$15K SoW |
Full breakdown with JSON-LD: https://compuute.se/pricing.
x402 payment env vars (all optional locally; /v1/scan/pay returns 503 until the wallet is set):
| Var | Purpose | Default |
|---|---|---|
X402_WALLET_ADDRESS | Base L2 address receiving USDC | unset (x402 disabled) |
X402_NETWORK | CAIP-2 network id β eip155:8453 (Base mainnet) or eip155:84532 (Base Sepolia) | eip155:8453 |
X402_PRICE_USD | Price per scan | 0.10 |
X402_FACILITATOR_URL | Facilitator base URL | CDP facilitator (serves both networks) |
CDP_API_KEY_ID / CDP_API_KEY_SECRET | CDP API key for facilitator verify/settle auth | unset (verify will be rejected) |
Set X402_NETWORK=eip155:84532 to quote prices in Base Sepolia USDC, which is
free from a faucet. The CDP facilitator serves Sepolia too, so a testnet
payment exercises the real verify/settle path and your real CDP API keys β
without moving real money.
Asset address and EIP-712 domain are selected together per network: Base
mainnet USDC signs as "USD Coin", Base Sepolia as "USDC". Mixing them
fails every signature with an error that looks like a bad API key, which is
why they live in one NETWORKS table rather than separate env vars.
Mainnet is the default and an unknown value falls back to it, so a typo can
never silently ask real agents to pay in worthless testnet USDC. Check which
mode is live with curl -s https://scan.compuute.se/v1/health β the x402
block reports network and testnet.
| Script | What it does |
|---|---|
scripts/precheck.sh | Start-of-session check: branch, working tree, tests, live state, next backlog item |
scripts/postcheck.sh | End-of-session check: committer hygiene, tests, append to docs/PROGRESS.md |
scripts/status.sh | 30-second live-state check against scan.compuute.se (4 probes) |
scripts/sbom.sh | Generate CycloneDX SBOM, optionally upload to a GitHub Release |
scripts/prospect-research.sh | Pull qualified prospects from GitHub + Anthropic Registry, draft DM angles |
scripts/measure-tiers.sh | T0/T1/T2 distribution snapshot per docs/agent-economy-strategy.md Β§5 β reach, engagement, conversion measured against Railway logs + Base RPC + GitHub stars |
api/services/scan.py β clone + sandbox + scan + parse. Pure functions.api/services/x402_service.py β x402 v2 verify / settle on the official x402 SDK; CDP facilitator (Base mainnet) by default; Bazaar discovery extension in 402 bodies.api/services/cdp_auth.py β minimal CDP API-key JWT auth for the facilitator (PyJWT + cryptography; avoids the full cdp-sdk).api/serializers/scan_serializer.py β Pydantic models, strict validation.api/routes/scan.py β HTTP layer for /v1/scan: idempotency, cache, ETag.api/routes/scan_x402.py β HTTP layer for /v1/scan/pay.api/routes/discovery.py β /.well-known/*, /robots.txt, /sitemap.xml.api/mcp_server.py β FastMCP server exposing scan_mcp_server.main.py β FastAPI wiring + middleware (security headers, CORS).Bundled compuute-scan version is pinned in the Dockerfile (ARG COMPUUTE_SCAN_REF=v0.6.2).
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/compuute-mcp-security-scanner)<a href="https://allmcps.com/mcp/compuute-mcp-security-scanner"><img src="https://allmcps.com/api/badge/compuute-mcp-security-scanner?style=directory" alt="Compuute MCP Security Scanner on AllMCPs" /></a>