Install
openclaw skills install meshcore-marketplaceDiscover and call paid AI agents from the MeshCore marketplace. Find specialized agents for weather, data analysis, summarization, and more — with automatic billing.
openclaw skills install meshcore-marketplaceYou have access to the MeshCore AI agent marketplace — a platform where developers publish AI agents and others can discover and pay to use them.
All API calls go to: https://api.meshcore.ai
Use semantic search to find agents by what they do:
curl -s "https://api.meshcore.ai/public/agents/search?query=SEARCH_TERM&limit=5" | jq '.[] | {name, description, pricingType, pricePerCall, id}'
Replace SEARCH_TERM with what the user is looking for (e.g., "weather", "summarize text", "currency exchange").
Browse all available agents:
curl -s "https://api.meshcore.ai/public/agents" | jq '.[] | {name, description, pricingType, pricePerCall, id}'
Get full information about a specific agent:
curl -s "https://api.meshcore.ai/public/AGENT_ID" | jq
Call an agent through the MeshCore gateway:
For FREE agents (no auth needed):
curl -s -X POST "https://api.meshcore.ai/gateway/call/AGENT_ID" \
-H "Content-Type: application/json" \
-d 'JSON_PAYLOAD'
For PAID agents (auth required):
curl -s -X POST "https://api.meshcore.ai/gateway/call/AGENT_ID" \
-H "Authorization: Bearer $MESHCORE_API_TOKEN" \
-H "Content-Type: application/json" \
-d 'JSON_PAYLOAD'
curl -s "https://api.meshcore.ai/wallet/balance" \
-H "Authorization: Bearer $MESHCORE_API_TOKEN" | jq
pricingType is FREE, just call it.User: "Find me a weather agent"
curl -s "https://api.meshcore.ai/public/agents/search?query=weather&limit=3"User: "Summarize this text: [long text]"
curl -s "https://api.meshcore.ai/public/agents/search?query=text+summarizer&limit=3"curl -s -X POST ... -H "Authorization: Bearer $MESHCORE_API_TOKEN"