io.github.rudimentall1/agentic-wallet-guardian-v3
PYPI · AGENTIC-WALLET-GUARDIAN-MCP · SCANNED AUG 20
Explainable ALLOW/WARN/BLOCK risk decisions for AI agent actions before execution, signed as OAA.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security100
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- Runs setuptools.build_meta at install time, a recognised native-build step with no shell scripting around it. View diagnostics → Pass
- 2 of 35 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency32
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- License check failed: the license (MIT License) isn't a recognized OSI-approved license. See how to fix → Fail
- Actively maintained (last published 9 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability72
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 332 tokens (~166/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management33
- Stability observed for 10 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage71
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 0% of tool parameters carry a description.Fail
- Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
- Implements a current MCP spec version (2026-07-28).Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
pypi · agentic-wallet-guardian-mcp
claude mcp add rudimentall1-agentic-wallet-guardian-v3 -- uvx agentic-wallet-guardian-mcp
codex mcp add rudimentall1-agentic-wallet-guardian-v3 -- uvx agentic-wallet-guardian-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"rudimentall1-agentic-wallet-guardian-v3": {
"type": "local",
"command": [
"uvx",
"agentic-wallet-guardian-mcp"
],
"enabled": true
}
}
} openclaw mcp add rudimentall1-agentic-wallet-guardian-v3 --command uvx --arg agentic-wallet-guardian-mcp
mcp_servers:
rudimentall1-agentic-wallet-guardian-v3:
command: "uvx"
args: ["agentic-wallet-guardian-mcp"] {
"mcpServers": {
"rudimentall1-agentic-wallet-guardian-v3": {
"command": "uvx",
"args": [
"agentic-wallet-guardian-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 20 Aug 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 30 to 33. That category is still filling its 30-day observation window: 9 days of observed history at the previous scan, 10 at this one. The score rises as the window fills, whether or not the server changes.
- 18 Aug 26 +4
- Stability: unverified → 0.27 ▲ functional
- 13 Aug 26 0
- Security disclosure: unverified → fail ▼ functional
- 11 Aug 26 +2
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 10 Aug 26 61
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 20 Aug 2026 · Analysed pypi/agentic-wallet-guardian-mcp@3.1.0
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | pypi |
Install scripts 1 script
| Hook | Tier | Command |
|---|---|---|
| build_backend | allowlisted | setuptools.build_meta |
Dependencies 35 packages
| Packages resolved | 35 |
|---|---|
| Stale | 1 |
| No linked repository | 1 |
| Tree resolution | Complete |
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
evaluate_action ~281
Evaluate a proposed blockchain action before executing it. Call this BEFORE submitting any transaction on behalf of a user or agent. Returns a JSON object with a decision ("ALLOW", "WARN", or "BLOCK"), a 0-100 risk score, and a human-readable explanation of which signals drove the decision. Treat "BLOCK" as a hard stop and "WARN" as something that needs explicit user confirmation before proceeding. Args: agent_id: Stable identifier for the calling agent (used for reputation history - reuse the same id across calls). wallet: The wallet address initiating the action. chain: Chain name, e.g. "ethereum", "base", "arbitrum", "polygon". action_type: One of "swap", "transfer", "approve", "contract_call", "bridge". target: Contract or recipient address, if applicable. from_token: Token symbol being sent/sold, if applicable. to_token: Token symbol being received/bought, if applicable. amount: Transaction amount in the relevant unit.
| Name | Type | Req | Description |
|---|---|---|---|
| action_type | string | yes | – |
| agent_id | string | yes | – |
| amount | – | – | – |
| chain | string | yes | – |
| from_token | – | – | – |
| target | – | – | – |
| to_token | – | – | – |
| wallet | string | yes | – |
| Name | Type | Req | Description |
|---|---|---|---|
| result | string | yes | – |
No examples provided.
get_agent_history ~51
Return this agent's past decisions and current reputation score. Useful before evaluate_action if you want to check standing first, or after a WARN/BLOCK to review why.
| Name | Type | Req | Description |
|---|---|---|---|
| agent_id | string | yes | – |
| Name | Type | Req | Description |
|---|---|---|---|
| result | string | yes | – |
No examples provided.