Multi Mcp— plugin

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

by religa·Plugin·github.com/religa/multi_mcp

Is Multi Mcp safe to install?

SaferSkills independently audited Multi Mcp (Plugin) and scored it 15/100 (red). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 16 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 23, 2026 · 29d ago
Scans run1 over 90 days
Detectors55 checks · 5 categories
Findings0 warnings · 16 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 · 16 flagged

Securityscore 0 · 16 findings
CRITICALReads your AWS credentials fileSS-PLUGIN-SECRET-EXFIL-AWS-FILES-01 · Credential exfiltration · multi_mcp/models/config.py×4
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 (("aws_access_key_id", "AWS_ACCESS_KEY_ID"),). 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
excerptmulti_mcp/models/config.py· python
61name="AWS Bedrock",
62credentials=(
63("aws_access_key_id", "AWS_ACCESS_KEY_ID"),
64("aws_secret_access_key", "AWS_SECRET_ACCESS_KEY"),
65("aws_region_name", "AWS_REGION_NAME"),
Occurrences
4 occurrences · first at L63, also L63, L64 +1 more
Show all 4 locations
Line
File
L63
multi_mcp/models/config.py
L63
multi_mcp/models/config.py
L64
multi_mcp/models/config.py
L64
multi_mcp/models/config.py
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-01sha256eee0dde13d2205eerubric 365aacaView on GitHub
CRITICALReads your AWS credentials fileSS-PLUGIN-SECRET-EXFIL-AWS-FILES-01 · Credential exfiltration · multi_mcp/settings.py×4
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 (aws_access_key_id: str | None = Field(default=No…). 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
excerptmulti_mcp/settings.py· python
86 
87# AWS Bedrock (optional - LiteLLM picks these up from os.environ)
88aws_access_key_id: str | None = Field(default=None, alias="AWS_ACCESS_KEY_ID")
89aws_secret_access_key: str | None = Field(default=None, alias="AWS_SECRET_ACCESS_KEY")
90aws_region_name: str | None = Field(default=None, alias="AWS_REGION_NAME")
Occurrences
4 occurrences · first at L88, also L88, L89 +1 more
Show all 4 locations
Line
File
L88
multi_mcp/settings.py
L88
multi_mcp/settings.py
L89
multi_mcp/settings.py
L89
multi_mcp/settings.py
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-01sha256eee0dde13d2205eerubric 365aacaView on GitHub
CRITICALReads your AWS credentials fileSS-PLUGIN-SECRET-EXFIL-AWS-FILES-01 · Credential exfiltration · tests/unit/test_litellm_client.py×8
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 (mock_settings.aws_access_key_id = None). 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/unit/test_litellm_client.py· python
495 
496with patch("multi_mcp.models.litellm_client.settings") as mock_settings:
497mock_settings.aws_access_key_id = None
498mock_settings.aws_secret_access_key = None
499mock_settings.aws_region_name = None
Occurrences
8 occurrences · first at L497, also L498, L507 +5 more
Show all 8 locations
Line
File
L497
tests/unit/test_litellm_client.py
L498
tests/unit/test_litellm_client.py
L507
tests/unit/test_litellm_client.py
L508
tests/unit/test_litellm_client.py
L525
tests/unit/test_litellm_client.py
L526
tests/unit/test_litellm_client.py
L535
tests/unit/test_litellm_client.py
L536
tests/unit/test_litellm_client.py
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-01sha256eee0dde13d2205eerubric 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.