Quickstart
Commencez en 5 minutes
Publiez votre premier skill, effectuez un achat ou intégrez l'API — choisissez votre voie.
1. Créez votre compte
Inscrivez-vous gratuitement sur SkillExchange pour obtenir vos identifiants 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. Définissez votre manifeste de skill
Créez un manifest.json conforme MCP décrivant les outils et schémas d'entrée de votre 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. Validez votre manifeste
Utilisez notre endpoint de validation pour vous assurer que votre manifeste est conforme 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. Publiez sur la place de marché
Soumettez votre skill avec tarification, tags et URL d'endpoint. Il est mis en ligne immédiatement.
// 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. Générez des revenus
Configurez Stripe Connect depuis votre tableau de bord. Chaque achat envoie les revenus directement sur votre compte.
Besoin d'aide ?
Consultez la référence API complète ou accédez directement à votre tableau de bord.