plugin.delivery — AI Plugin Marketplace Guide

SkillAI & models

Guide to plugin.delivery — a marketplace and delivery infrastructure for AI plugins and MCP servers. Covers plugin discovery, version management, secure distribution, and integration with Claude Desktop, Cursor, and SperaxOS. The npm for AI tools.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the plugin.delivery — AI Plugin Marketplace Guide skill

What this skill tells your AI

The instructions your AI receives, as published by nirholas/three.ws in data/skills/development/ai-plugin-marketplace-guide/SKILL.md and read by ahel’s review.

plugin.delivery is the marketplace and delivery infrastructure for AI plugins and MCP servers. Discover, install, and manage AI tools — like npm for AI.

What Is plugin.delivery?

Developers                    Users
    │                           │
    ▼                           ▼
 Publish Plugin ──→ plugin.delivery ──→ Install Plugin
    │                    │                    │
    ├── MCP Servers      ├── Search           ├── Claude Desktop
    ├── OpenAI Plugins   ├── Reviews          ├── Cursor
    ├── Tool Manifests   ├── Versions         ├── SperaxOS
    └── API Specs        └── Security Scan    └── Any MCP Host

Plugin Types

TypeFormatCompatible With
MCP ServerMCP protocolClaude, Cursor, SperaxOS
OpenAI PluginOpenAI manifestChatGPT, compatible clients
Tool ManifestJSON SchemaAny agent framework
API SpecOpenAPI 3.xREST clients, code gen

Publishing

Create Plugin Manifest

{
  "name": "sperax-defi-tools",
  "version": "1.0.0",
  "description": "Sperax DeFi tools — USDs yield, SPA staking, portfolio management",
  "author": "Sperax",
  "license": "MIT",
  "type": "mcp-server",
  "transport": "stdio",
  "command": "npx",
  "args": ["@nirholas/mcp-server"],
  "tools": [
    { "name": "getUSdsYield", "description": "Get current USDs auto-yield APY" },
    { "name": "getSPAPrice", "description": "Get SPA token price" },
    { "name": "getPortfolio", "description": "Get Sperax portfolio overview" }
  ],
  "categories": ["defi", "crypto", "arbitrum"],
  "homepage": "https://app.sperax.io"
}

Publish

# Install CLI
npm install -g @plugin-delivery/cli

# Login
plugin-delivery login

# Publish
plugin-delivery publish ./manifest.json

Discovery

Search

# CLI search
plugin-delivery search "defi yield"

# API search
curl https://api.plugin.delivery/v1/search?q=defi%20yield&type=mcp-server

Browse by Category

CategoryCountExamples
DeFi150+Sperax, Aave, Uniswap tools
Market Data80+CoinGecko, DeFi Llama
Trading60+DEX aggregators, order books
Social40+Twitter/X analysis, sentiment
Security30+Contract scanners, audit tools
Research25+On-chain analytics, VC reports
Productivity100+Notes, tasks, code tools

Installation

Claude Desktop

plugin-delivery install sperax-defi-tools --target claude-desktop
# Automatically updates claude_desktop_config.json

Cursor

plugin-delivery install sperax-defi-tools --target cursor

SperaxOS

Installed through the SperaxOS skill marketplace UI or via CLI:

plugin-delivery install sperax-defi-tools --target sperax

Version Management

# Install specific version
plugin-delivery install sperax-defi-tools@1.2.0

# Update all plugins
plugin-delivery update

# Check for updates
plugin-delivery outdated

Security Scanning

Every published plugin is automatically scanned for:

  • Malicious code patterns
  • Credential harvesting
  • Unauthorized network access
  • Dependency vulnerabilities
  • License compliance
Security Score: A+
├── No malicious patterns detected
├── All dependencies audited
├── License: MIT (compatible)
└── Last scanned: 2 hours ago

Links

Signals

GitHub stars
114
Forks
29
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
ai-plugin-marketplace-guide
Source
github.com/nirholas/three.ws