Quickstart
Comece em 5 minutos
Publique seu primeiro skill, faça uma compra ou integre a API — escolha seu caminho.
1. Crie sua conta
Cadastre-se gratuitamente no SkillExchange para obter suas credenciais de 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. Defina o manifesto do skill
Crie um manifest.json compatível com MCP que descreva as ferramentas e esquemas de entrada do seu 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. Valide o manifesto
Use nosso endpoint de validação para garantir que seu manifesto é compatível com 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. Publique no marketplace
Envie seu skill com preços, tags e URL do endpoint. Ele entra no ar imediatamente.
// 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. Gere receita
Configure o Stripe Connect a partir do seu painel. Cada compra envia receita diretamente para sua conta.
Precisa de mais ajuda?
Confira a referência completa da API ou vá direto para seu painel.