GGithub Mcp ServerGitHub's official MCP Server

mcp-so:github-mcp-server_github

View source
B
75/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

2

Score

75/100

CRITICAL 1
LOW 1

Findings (2)

CRITICAL
GitHub personal access token
L57

Detects GitHub personal access tokens

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
FIX

Remove the GitHub token immediately and revoke it at github.com/settings/tokens. Use short-lived tokens via GitHub Apps instead of hardcoded PATs.

FP?

Likely FP if the matched string is a placeholder (e.g., ghp_xxxxxxxxxxxx) or appears in documentation describing token format rather than containing a real token.

LOW
Hardcoded secrets in MCP env block
L56

Detects hardcoded API keys, tokens, or passwords in MCP server environment configuration

"env": { + "GITHUB_PERSONAL_ACCESS_TOKEN": "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"
FIX

Remove shell metacharacters (semicolons, pipes, ampersands, backticks) from MCP server arguments. Use explicit argument arrays and avoid shell expansion in MCP configurations.

FP?

Likely FP if the metacharacter is a literal part of a non-shell argument (e.g., a regex pattern or a URL query parameter containing ampersands).