低风险 — 风险评分 5/100
上次扫描:2 天前 重新扫描
5 /100
solanaprox-mcp
MCP server for SolanaProx — pay for AI inference with Solana/USDC. No API keys. Your wallet is your identity.
This is a legitimate MCP server for a Solana/USDC-based AI payment gateway. It exposes four tools (ask_ai, check_balance, estimate_cost, list_models) that send wallet address and prompts to solanaprox.com. No shell execution, filesystem access, credential harvesting, or hidden functionality found. The code is clean, well-structured, and behaves exactly as documented.
技能名称solanaprox-mcp
分析耗时37.6s
引擎pi
可以安装
This skill is safe to use. No security controls are needed beyond what would be standard for any network-accessing tool. Ensure the SOLANA_WALLET env var is sourced securely.
资源类型声明权限推断权限状态证据
文件系统 NONE NONE No filesystem access found in src/index.ts or agent-exammple.js
网络访问 READ READ ✓ 一致 src/index.ts:97-106 — fetch POST to solanaprox.com/v1/messages; src/index.ts:124…
命令执行 NONE NONE No child_process, exec, spawn, or shell command invocations found
环境变量 READ READ ✓ 一致 src/index.ts:17 — reads SOLANA_WALLET and SOLANAPROX_URL from process.env; only …
技能调用 NONE NONE No inter-skill invocation found
剪贴板 NONE NONE No clipboard access found
浏览器 NONE NONE No browser automation found
数据库 NONE NONE No database access found
16 项发现
🔗
中危 外部 URL 外部 URL
https://badge.fury.io/js/solanaprox-mcp.svg
README.md:5
🔗
中危 外部 URL 外部 URL
https://www.npmjs.com/package/solanaprox-mcp
README.md:5
🔗
中危 外部 URL 外部 URL
https://img.shields.io/badge/License-MIT-yellow.svg
README.md:6
🔗
中危 外部 URL 外部 URL
https://opensource.org/licenses/MIT
README.md:6
🔗
中危 外部 URL 外部 URL
https://solanaprox.com
README.md:70
🔗
中危 外部 URL 外部 URL
https://solanaprox.com/v1/messages
README.md:138
🔗
中危 外部 URL 外部 URL
https://solanaprox.com/api/balance/YOUR_WALLET
README.md:194
🔗
中危 外部 URL 外部 URL
https://solscan.io
README.md:215
🔗
中危 外部 URL 外部 URL
https://solanaprox.com/docs
README.md:222
🔗
中危 外部 URL 外部 URL
https://twitter.com/solanaprox
README.md:223
🔗
中危 外部 URL 外部 URL
https://lightningprox.com
README.md:224
🔗
中危 外部 URL 外部 URL
https://lpxpoly.com
README.md:233
🔗
中危 外部 URL 外部 URL
https://isitarug.com
README.md:234
🔗
中危 外部 URL 外部 URL
https://opencollective.com/express
package-lock.json:257
🔗
中危 外部 URL 外部 URL
https://opencollective.com/fastify
package-lock.json:585
📧
提示 邮箱 邮箱地址
[email protected]
SKILL.md:88

目录结构

7 文件 · 73.6 KB · 2323 行
JSON 3f · 1432L TypeScript 1f · 375L Markdown 2f · 326L JavaScript 1f · 190L
├─ 📁 src
│ └─ 📜 index.ts TypeScript 375L · 10.2 KB
├─ 📜 agent-exammple.js JavaScript 190L · 6.0 KB
├─ 📋 package-lock.json JSON 1368L · 47.6 KB
├─ 📋 package.json JSON 49L · 1.1 KB
├─ 📝 README.md Markdown 238L · 5.5 KB
├─ 📝 SKILL.md Markdown 88L · 2.9 KB
└─ 📋 tsconfig.json JSON 15L · 324 B

依赖分析 3 项

包名版本来源已知漏洞备注
@modelcontextprotocol/sdk ^1.0.0 npm Standard MCP SDK from Anthropic, no known vulnerabilities
typescript ^5.0.0 npm (dev) Dev dependency only
ts-node ^10.9.0 npm (dev) Dev dependency only

安全亮点

✓ No shell or subprocess execution — pure HTTP fetch API calls only
✓ No filesystem access — reads/writes no files beyond npm install
✓ No credential harvesting — SOLANA_WALLET used only as API identifier sent to declared endpoint
✓ No obfuscation — all code is clear, readable TypeScript
✓ No hidden instructions, base64, or eval patterns
✓ No suspicious dependencies beyond @modelcontextprotocol/sdk
✓ SKILL.md accurately describes all four tools and their behavior
✓ Error handling is present and appropriate (402 for insufficient balance, etc.)
✓ Wallet address is a public Solana identifier by design — no private key access