Compuute MCP Security Scanner
Server Details
Scan any public GitHub MCP-server repo for security issues. 37 MCP-specific L1 rules, 8 languages.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Compuute/compuute-scan-api
- GitHub Stars
- 0
- Server Listing
- compuute-scan-api
Available Tools
1 toolscan_mcp_serverAInspect
Scan a public GitHub MCP-server repository for security issues.
Clones the repo (shallow, <60s, <200 MB), runs compuute-scan v0.6.2 in
static analysis mode (no code execution from the target), and returns a
structured report with severity counts, a 0-100 score, and the 10 most
severe findings.
WHEN TO USE:
- Before connecting to an unknown MCP server discovered via Anthropic
Registry, Smithery, mcp.so, or a Discord recommendation.
- Before installing a third-party MCP-server package into a production
pipeline.
- As part of an agent's pre-commit / pre-deploy due-diligence step
when adding new dependencies.
- As one input to a multi-source trust evaluation (combine with
publisher reputation, package install count, last-update recency).
WHEN NOT TO USE:
- For private repos. Use the on-prem CLI instead:
`npx compuute-scan ./path-to-private-repo`
- For deep exploitability assessment of a specific code path. This is
pattern matching, not dataflow analysis. Book a manual L2-L4 audit
at https://compuute.se/audit for that depth.
- For non-GitHub hosts (GitLab, Bitbucket, self-hosted). v1 supports
github.com only.
- For repos > 200 MB or clone time > 60s. The endpoint returns a 413
or 504 in those cases — fall back to local CLI.
EXPECTED RESPONSE TIME:
- Median: ~1-2 seconds for small repos (<100 files).
- p99: ~10 seconds for medium repos.
- Hard timeout at clone=60s, scan=120s combined.
EXPECTED COST:
- Free tier in MVP. Future Pro tier may charge per-scan or per-month.
DATA FRESHNESS:
- Scanner version is reported in response.scanner.version.
- L1 rule set freshness reflects compuute-scan releases — see
github.com/Compuute/compuute-scan/CHANGELOG.md for the latest CVE
and threat-intel response timeline.
EXAMPLES:
Example 1 — scan an MCP server you're evaluating:
github_url = "https://github.com/modelcontextprotocol/servers"
→ score: 0, summary: {critical: 1, high: 94, medium: 22}
→ top_findings include SSRF, eval, etc.
→ recommendation: "AVOID — 1 critical and 94 high finding(s)..."
Example 2 — scan a clean reference implementation:
github_url = "https://github.com/microsoft/azure-devops-mcp"
→ score: 90+, summary: {critical: 0, high: 1}
→ recommendation: "REVIEW — 1 high finding(s)..."
Example 3 — scan your own dev MCP-server before publishing:
github_url = "https://github.com/yourorg/your-mcp"
→ audit your own surface before others install it
OUTPUT FIELDS (stable schema):
- repo_url (str): canonical URL of the scanned repo.
- score (int): 0-100, higher safer. Coarse summary, not a precision claim.
- summary (object): {critical, high, medium, low, info, files_scanned}.
- recommendation (str): action guidance derived from severity counts.
- findings_count (int): total raw findings (may include false positives).
- top_findings (list): up to 10 most severe, each with {id, title,
severity, file, line, owasp, cwe}.
- l0_discovery (object): MCP transport, tool count, dependency pinning.
- performance (object): clone_seconds, scan_seconds, repo_size_bytes.
- scanner (object): {name, version, layers_covered}.
- _disclaimer (str): MANDATORY triage disclaimer. Read it.
Args:
github_url: Public GitHub HTTPS URL (e.g. https://github.com/org/repo).
Must be public and < 200 MB. v1 is github.com only.
Returns:
Structured scan result. On error, returns {"error": code, "message": ...}
with HTTP-style code (invalid_url, clone_failed, scan_timeout, etc.).
| Name | Required | Description | Default |
|---|---|---|---|
| github_url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations present, the description fully discloses all behavioral traits: it clones shallowly (<60s, <200MB), runs static analysis (no code execution), returns a structured report including severity counts, score, and top findings. It also covers expected response time, cost, data freshness, and limitations (pattern matching, not dataflow analysis).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with labeled sections (WHEN TO USE, WHEN NOT TO USE, EXPECTED RESPONSE TIME, etc.), making it easy to scan. However, it is relatively long; while every section adds value, a slight reduction in examples or output field details could improve conciseness without losing clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (public repo cloning, static analysis, and reporting) and the absence of output schema or annotations, the description covers all necessary aspects: inputs, process, outputs (including full field list with types), error handling (413/504), examples, and even a disclaimer. No gaps are evident.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter `github_url` is given a complete semantic explanation in the description: required format ('Public GitHub HTTPS URL'), constraints ('public and <200 MB'), and usage scope ('v1 is github.com only'). This adds essential meaning beyond the schema's mere string type, compensating for the 0% schema description coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description begins with a specific action verb ('Scan') and a clearly defined resource ('public GitHub MCP-server repository'), immediately establishing the tool's core purpose. It distinguishes itself from alternatives like the on-prem CLI for private repos, and the scope is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes dedicated 'WHEN TO USE' and 'WHEN NOT TO USE' sections with concrete scenarios (e.g., before connecting to unknown servers, pre-commit steps) and explicit exclusions (private repos, non-GitHub hosts, repos >200 MB). It also names a direct alternative (on-prem CLI) for disallowed use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Scan any MCP server for tool-poisoning, security, auth & license. Trust score before install.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Free, read-only security scanner for remote MCP servers, before you connect them.
Related MCP Servers
- AlicenseAqualityAmaintenanceSecurity scanning for MCP servers from the inside out. Provides runtime inspection, AST-based static analysis, config audit, dependency analysis, and OWASP MCP Top 10 compliance in a single MCP server.551505MIT
- FlicenseNot gradedqualityBmaintenanceEnables static security scanning of MCP servers, AI agent skills, and plugins by detecting attack patterns across severity levels and producing SARIF output for GitHub Code Scanning.
- AlicenseNot gradedqualityCmaintenanceSecurity scanner for MCP servers and AI-generated code. Detects leaked API keys, PII, prompt injection, and MCP misconfigs with A-F security grades.MIT
- AlicenseNot gradedqualityFmaintenanceComprehensive MCP server for analyzing GitHub pull requests, detecting security vulnerabilities, assessing code quality, and providing risk ratings across multiple languages.9MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Only one tool exists, so there is no ambiguity. The tool is clearly described with specific use cases and limitations.
The single tool name 'scan_mcp_server' follows a consistent verb_noun pattern, which is clear and descriptive.
One tool is appropriate for a focused security scanner. While additional tools like listing past scans could enhance coverage, the current count is reasonable for the stated purpose.
The tool fully covers its intended domain: scanning public GitHub MCP-server repos for security issues. The description explicitly states what it does and does not do, leaving no obvious gaps.