MarketNow — MCP Skills Marketplace
8,582 MCP servers certified with 3-layer Sentinel security audit
README
](https://smithery.ai/servers/eddyflores100/marketnow)
MarketNow — Trust Layer for Agent Commerce
7,156 MCP servers. All Sentinel-certified with signed SHA-256 certificates. 3-layer security audit (L1.5 + L1.6 + L2 Docker sandbox). Public verification at marketnow.site/verify.
<!-- CANONICAL METADATA — for crawlers and directories that scrape this README. If you are maintaining an external directory listing for MarketNow, use these values as the source of truth. Last updated: 2026-07-06. -->
| Field | Value |
|---|---|
| Name | MarketNow |
| Tagline | Trust layer for agent commerce — every skill Sentinel-certified |
| Description | MarketNow is the first MCP marketplace with security certification. Every one of 7,156 MCP servers is audited by Sentinel (3-layer pipeline: L1.5 metadata + L1.6 Semgrep/secrets/OSV + L2 Docker sandbox) and gets a signed SHA-256 certificate, publicly verifiable at marketnow.site/verify. B2B pricing: Community (Free) / Team ($99/mo) / Enterprise (Custom). AliceLabs LLC proprietary, maintained by AliceLabs LLC (Wyoming, USA). |
| Total skills | 7,156 |
| Certified skills | 7,156 (100%) |
| Free skills | 65 |
| Categories | 61 |
| Pricing | B2B: Community (Free) / Team ($99/mo, COMING SOON) / Enterprise (Custom) |
| Payment methods | Stripe (credit card) + USDC on Base |
| Languages | EN, ES, ZH, PT, FR |
| License | AliceLabs LLC Proprietary |
| Maintainer | AliceLabs LLC (Wyoming, USA) — founder Edison Flores |
| MCP server | npx -y marketnow-mcp |
| npm | https://www.npmjs.com/package/marketnow-mcp |
| GitHub | https://github.com/edgarfloresguerra2011-a11y/marketnow |
| Website | https://marketnow.site |
| Verify certificate | https://marketnow.site/verify |
| Transparency dashboard | https://marketnow.site/sentinel-transparency |
| API docs | https://marketnow.site/api/agent.json |
| Standards | x402 (implementing), AP2 (implementing), MCP Server Cards (monitoring) |
| Sentinel layers | L1.5 (6 metadata checks) + L1.6 (18 Semgrep rules + 18 secret patterns + OSV API) + L2 (Docker sandbox: --network none, --read-only, --cap-drop ALL) |
<!-- END CANONICAL METADATA -->
🤖 What is MarketNow?
MarketNow is the open marketplace for MCP-compatible agent skills. It allows any agent (Claude Desktop, Cursor, Cline, VS Code) to search, discover, and install Sentinel-certified skills via the Model Context Protocol.
The code is open source. What you pay for is trust, certification, and integration.
🛡️ Sentinel Certification
Every skill in MarketNow is audited by Sentinel, a 3-layer security pipeline:
L1.5 — Metadata Checks (real-time, ~200ms on Vercel)
- AUTH (does the server require authentication?)
- Tool description injection (prompt injection patterns)
- Input validation (fs/db/http access detection)
- CORS policy
- OAuth scopes
- Rate limiting + error leakage
L1.6 — Static Analysis (real-time + weekly batch)
- 18 Semgrep-equivalent rules (prompt injection, command injection, SSRF, path traversal, tool forgery)
- 18 secret patterns (Stripe, AWS, GitHub, JWT, private keys, wallet mnemonics)
- OSV API real-time dependency vulnerability check
L2 — Docker Sandbox (async via GitHub Actions)
Runs the actual MCP server in isolation:
docker run --rm \
--network none \
--read-only \
--cap-drop ALL \
--security-opt no-new-privileges \
--memory 256m --cpus 0.5 \
mcp-audit-target
Analyzes stdout for: network attempts, fs writes, process spawns, credential leakage, crashes, dynamic imports.
Results (live at marketnow.site/sentinel-transparency)
| Risk Level | Count | Score |
|---|---|---|
| Low | 6 | 10/10 |
| Medium | 8,473 | 6-9/10 |
| High | 92 | 2-4/10 |
| Critical | 11 | 0-1/10 |
L2 coverage: 17 of 7,156 skills (0.2%) have L2 Docker sandbox results. The remaining 8,565 are certified with L1.5+L1.6 (static analysis). L2 coverage grows as more skills get source.url populated — L2 requires a GitHub repo to clone and run in the sandbox.
Each skill gets a signed SHA-256 certificate with:
certificate_id(MN-SC-2026-XXXXXXX)overall_score(0-10)risk_level(low/medium/high/critical)- 7-day validity (regenerated weekly by GitHub Actions cron)
Verify any certificate: https://marketnow.site/verify Transparency dashboard: https://marketnow.site/sentinel-transparency All certificates: _data/sentinel_certificates/
Markdown Badges
Skill authors can embed a certified badge in their READMEs:
[](https://marketnow.site/skill/mn-gen-00003)
📊 Stats
| Metric | Value |
|---|---|
| Total skills | 7,156 |
| Certified skills | 7,156 (100%) |
| Categories | 61 |
| Free skills | 65 |
| L2 sandbox runs | 17 |
| Languages | EN, ES, ZH, PT, FR |
| MCP server tools | 5 |
🚀 Quick Start
Install MCP Server (Claude Desktop, Cursor, Cline)
{
"mcpServers": {
"marketnow": {
"command": "npx",
"args": ["-y", "marketnow-mcp"]
}
}
}
Now your agent can:
- Search 7,156 certified skills by query, category, or language
- Get full skill details with system prompts and Sentinel security reports
- Verify any skill's signed certificate
- Get install commands for any skill
Verify a Certificate
# Check any skill's certificate via API
curl "https://marketnow.site/api/audit-skill?certificate=1&skillId=mn-gen-00003" | jq
# Or verify visually at:
# https://marketnow.site/verify?skillId=mn-gen-00003
Search Skills
# Search for web scrapers
curl "https://marketnow.site/api/search?q=scrape" | jq
# Search in Chinese
curl "https://marketnow.site/api/search?q=数据库&language=zh" | jq
💰 Pricing (B2B)
MarketNow uses B2B pricing — no per-skill purchases:
| Tier | Price | Features |
|---|---|---|
| Community | FREE | Browse all 7,156 skills, install free skills, basic search |
| Team ($99/mo) | COMING SOON | Team monitoring, analytics, priority support, bulk install |
| Enterprise | Custom | On-prem deployment, custom SLAs, dedicated Sentinel audits, SSO |
Commission: 20% MarketNow, 80% seller (for paid skills)
📡 Public API (no auth required)
| Endpoint | Description |
|---|---|
GET /api/skills.json |
All 7,156 skills (bulk download) |
GET /api/search?q=query |
Server-side search with relevance scoring |
GET /api/free-skills.json |
65 free skills |
GET /api/categories.json |
61 categories with counts |
GET /api/manifest.json |
Marketplace metadata |
GET /api/agent.json |
Machine-readable agent instructions |
POST /api/audit-skill |
Run Sentinel L1.5+L1.6+L2 real-time audit |
GET /api/audit-skill?certificate=1&skillId=X |
Retrieve signed Sentinel certificate |
GET /api/audit-skill?sentinel-status=1 |
Aggregate Sentinel status (batch audit + L2 coverage + certified count) |
GET /api/verify-purchase?sessionId=X |
Verify a Stripe purchase |
GET /.well-known/mcp/server-card.json |
MCP server discovery |
🔧 MCP Server Tools
| Tool | Description |
|---|---|
search_skills |
Search by query, category, language |
get_skill |
Get full details (system prompt, sentinel, setup) |
list_categories |
List all 61 categories |
get_manifest |
Marketplace metadata |
get_install_command |
Get npx install command |
🔗 Links
- Website: https://marketnow.site
- Verify a certificate: https://marketnow.site/verify
- Transparency dashboard: https://marketnow.site/sentinel-transparency
- Security details: https://marketnow.site/security
- npm: https://www.npmjs.com/package/marketnow-mcp
- Smithery: https://smithery.ai/servers/eddyflores100/marketnow
- OpenAPI: https://marketnow.site/api/openapi.json
- Agent instructions: https://marketnow.site/api/agent.json
📜 License & IP Protection
ALL code in this repository is PROPRIETARY — property of AliceLabs LLC.
| Component | License | Can copy? | Can build competing product? | Can commercialize? |
|---|---|---|---|---|
| Marketplace code (UI, API, search) | AliceLabs LLC Proprietary | ❌ No | ❌ No | ❌ Requires written permission |
| Sentinel audit engine | AliceLabs LLC Proprietary | ❌ No | ❌ No | ❌ Requires written permission |
| Sentinel badges (SVG) | CC-BY 4.0 (display only) | ✅ Display only | ❌ No | ❌ No |
| "Sentinel" name & logo | Trademark™ AliceLabs LLC | ❌ No | ❌ No | ❌ No |
| "MarketNow" name | Trademark™ AliceLabs LLC | ❌ No | ❌ No | ❌ No |
Anyone who wants to commercialize, redistribute, or build upon any part of this codebase MUST obtain written permission from AliceLabs LLC.
See:
- LICENSE — Full license terms (Proprietary)
- SENTINEL-LICENSE — Sentinel proprietary license terms
- TRADEMARK_NOTICE — Trademark usage guidelines
- CLA — Contributor License Agreement
Patent pending on the 3-layer audit pipeline design (L1.5 → L1.6 → L2).
For licensing inquiries: legal@alicelabs.site For support: support@alicelabs.site General inquiries: info@alicelabs.site
Report IP violations: legal@alicelabs.site
Built for autonomous agents. Every skill has a signed Sentinel certificate, a ready-to-use system prompt, and auto-configured install. ALL code is proprietary property of AliceLabs LLC. Commercial use requires written permission.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。