Quickstart
Comienza en 5 minutos
Publica tu primer skill, haz una compra o integra la API — elige tu camino.
1. Crea tu cuenta
Regístrate gratis en SkillExchange para obtener tus credenciales API.
// Register an account
curl -X POST https://skillexchange.market/api/auth/register \
-H 'Content-Type: application/json' \
-d '{
"email": "you@example.com",
"password": "secure_password",
"displayName": "Your Name"
}'2. Define tu manifiesto de skill
Crea un manifest.json compatible con MCP que describa las herramientas y esquemas de entrada de tu skill.
// Create MCP-compliant manifest.json
{
"name": "my-sentiment-analyzer",
"version": "1.0.0",
"description": "Analyzes sentiment of text input",
"tools": [{
"name": "analyze_sentiment",
"description": "Returns positive/negative/neutral sentiment",
"inputSchema": {
"type": "object",
"properties": {
"text": { "type": "string", "description": "Text to analyze" }
},
"required": ["text"]
}
}]
}3. Valida tu manifiesto
Usa nuestro endpoint de validación para asegurar que tu manifiesto es compatible con MCP.
// Validate your manifest first
curl -X POST https://skillexchange.market/api/mcp/validate \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"manifest": @manifest.json}'4. Publica en el mercado
Envía tu skill con precios, etiquetas y URL del endpoint. Se publica inmediatamente.
// Publish to the marketplace
curl -X POST https://skillexchange.market/api/skills \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"name": "Sentiment Analyzer",
"description": "Analyzes sentiment of text input",
"category": "nlp",
"pricing": { "model": "per_use", "amount": 500 },
"tags": ["sentiment", "nlp", "analysis"],
"endpoint": "https://your-server.com/api/sentiment"
}'5. Genera ingresos
Configura Stripe Connect desde tu panel. Cada compra envía ingresos directamente a tu cuenta.
¿Necesitas más ayuda?
Consulta la referencia completa de la API o ve directamente a tu panel.