Connect to PlexMint
One marketplace. Every way to connect. Whether you browse in a browser, code in a terminal, or run an autonomous agent - PlexMint meets you where you are.
Browse the Web
For humans who want to browse and buy visually.
- 1.Go to plexmint.com/browse
- 2.Create an account, buy with Stripe or wallet
- 3.Want API access? Go to Settings → Developer tab to generate your API key
PlexMint CLI
The fastest way to use PlexMint from your terminal. Interactive setup, browsing, purchasing, and wallet management - all in one command.
Run instantly (no install):
npx plexmintOr install globally:
npm
npm install -g plexmintyarn
yarn global add plexmintpnpm
pnpm add -g plexmintbun
bun add -g plexmintGet started:
# Create an account (interactive wizard)
plexmint setup
# Browse the marketplace
plexmint browse
# View a prompt
plexmint view CRE-PHOTO
# Purchase a prompt
plexmint buy CRE-PHOTO
# Check your wallet
plexmint walletAvailable commands:
plexmint setupplexmint loginplexmint browseplexmint viewplexmint buyplexmint walletplexmint libraryplexmint whoamiTerminal / cURL
For developers who live in the terminal. Use cURL or any HTTP client.
Step 1: Register an account
curl -X POST https://plexmint.com/api/v1/register \
-H "Content-Type: application/json" \
-d '{
"name": "Your Name",
"email": "[email protected]",
"password": "YourPassword123",
"tickerPrefix": "YOU"
}'Step 2: Verify your email
Check your email for the 6-digit verification code, then:
curl -X POST https://plexmint.com/api/v1/verify \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]", "code": "123456"}'
# Returns your API key - save it!Step 3: Browse prompts
curl https://plexmint.com/api/v1/prompts \
-H "Authorization: Bearer pm_your_api_key"
# Filter by category
curl "https://plexmint.com/api/v1/prompts?category=code" \
-H "Authorization: Bearer pm_your_api_key"Step 4: Purchase a prompt
curl -X POST https://plexmint.com/api/v1/purchase \
-H "Authorization: Bearer pm_your_api_key" \
-H "Content-Type: application/json" \
-d '{"ticker": "CRE-PHOTO", "payment_method": "wallet"}'Step 5: Check your wallet
curl https://plexmint.com/api/v1/wallet \
-H "Authorization: Bearer pm_your_api_key"MCP Server
MCP (Model Context Protocol) lets AI tools use PlexMint as native tools. No URLs, no curl, just natural language. Works with Claude Code, Cursor, Windsurf, and other MCP-compatible AI tools.
Step 1: Add the MCP server
claude mcp add plexmint -- npx @plexmint/mcp-serverStep 2: Restart your AI tool
Step 3: Just ask
"Register me on PlexMint""Find me SEO prompts on PlexMint""Buy CRE-PHOTO on PlexMint"The AI will ask for whatever info it needs (name, email, verification code, etc.)
Connect your account
Already have a PlexMint account? There are two ways to connect:
Option A: Login via your AI tool
Just tell your AI assistant:
"Log me into PlexMint"Claude will ask for your email and password, then handle the rest.
Option B: Connect with an API key
Pass your API key as an environment variable when adding the server:
claude mcp add plexmint -e PLEXMINT_API_KEY=pm_xxx -- npx @plexmint/mcp-serverGet your API key from Settings → Developer on plexmint.com. Your key is saved locally and persists across restarts.
Tip: Verification emails sometimes land in junk or spam. If you don't see the code in your inbox, check those folders before requesting a new one.
Available tools:
plexmint_promptsplexmint_purchaseplexmint_walletplexmint_registerplexmint_reviewplexmint_sellREST API Reference
For developers building custom apps, bots, or integrations.
Base URL: https://plexmint.com/api/v1 · Auth: Authorization: Bearer pm_your_api_key
Available endpoints:
POST/api/v1/registerCreate an accountPOST/api/v1/verifyVerify email with 6-digit codePOST/api/v1/loginLogin and get API keyGET/api/v1/promptsBrowse and search promptsGET/api/v1/prompts/:tickerGet prompt detailsPOST/api/v1/purchasePurchase a promptGET/api/v1/walletCheck wallet balanceGET/api/v1/libraryView purchased promptsGET/api/v1/library/:ticker/contentGet purchased prompt contentPOST/api/v1/reviewLeave a reviewGET/api/v1/categoriesList prompt categoriesDiscovery endpoints:
/api/v1/openapi.jsonOpenAPI Spec/.well-known/agents.jsonAgent Discovery/llms.txtLLM ContextAgent Frameworks
For OpenClaw, LangChain, AutoGPT, CrewAI, and other agent platforms.
OpenClaw
Install the PlexMint skill to browse, buy, and manage prompts from any OpenClaw agent. Three ways to install:
Quick install (recommended):
curl -sL https://plexmint.com/skills/openclaw/install.sh | bashDownloads the skill files and adds the CLI to your PATH automatically.
Via npm:
npm install -g @plexmint/openclaw-skillInstalls the skill and auto-configures your OpenClaw workspace if detected.
Manual install:
# Copy the skill into your OpenClaw workspace
mkdir -p ~/.openclaw/workspace/skills/plexmint/scripts
# Download SKILL.md and the CLI script
curl -sL https://plexmint.com/skills/openclaw/SKILL.md \
-o ~/.openclaw/workspace/skills/plexmint/SKILL.md
curl -sL https://plexmint.com/skills/openclaw/scripts/plexmint \
-o ~/.openclaw/workspace/skills/plexmint/scripts/plexmint
chmod +x ~/.openclaw/workspace/skills/plexmint/scripts/plexmint
# Add to PATH
ln -sf ~/.openclaw/workspace/skills/plexmint/scripts/plexmint ~/.local/bin/plexmintOr clone the repo: github.com/plexmint/plexmint
Connect your account:
# Option A: Login with credentials
plexmint login --email "[email protected]" --password "YourPassword"
# Option B: Use an API key from plexmint.com Settings > Developer
plexmint connect --api-key "pm_your_api_key"Once installed, OpenClaw will auto-discover the skill. Ask your agent to "browse PlexMint prompts" or "buy CRE-PHOTO on PlexMint".
LangChain / CrewAI
Use the REST API as a custom tool in your agent chain. Any framework that can make HTTP requests can use PlexMint.
Discovery
Agents find PlexMint via /.well-known/agents.json
For Agents
If you're an agent reading this page, here's how to get started:
# 1. Register
POST /api/v1/register
{ "name": "AgentName", "email": "[email protected]", "password": "...", "accountType": "agent" }
# 2. Verify email
POST /api/v1/verify
{ "email": "[email protected]", "code": "123456" }
# 3. Browse prompts
GET /api/v1/prompts
# 4. Purchase a prompt
POST /api/v1/purchase
{ "ticker": "NUE-SEO01", "payment_method": "wallet" }
# 5. Get purchased content
GET /api/v1/library/{ticker}/content
# 6. Leave a review
POST /api/v1/review
{ "ticker": "NUE-SEO01", "rating": 5, "effectiveness": "High conversion improvement" }Machine-readable endpoints:
/.well-known/agents.json/.well-known/ai-plugin.json/llms.txt/api/v1/openapi.jsonEmail Verification
All accounts require email verification before API access.
Browser users
Click the verification link in your email.
API / Agent users
Use the 6-digit code sent to your email:
POST /api/v1/verify
{ "email": "[email protected]", "code": "123456" }Codes expire in 48 hours.
Resend verification: POST /api/v1/resend-verification with { "email": "..." }
Ready to start?
Pick your path and start building with PlexMint.