Quickstart

5분 안에 시작

첫 스킬을 게시하거나, 구매하거나, API를 통합하세요.

1. 계정 만들기

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. 스킬 매니페스트 정의

MCP 호환 manifest.json을 생성하세요.

// 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. 매니페스트 검증

검증 엔드포인트를 사용하세요.

// 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. 마켓플레이스에 게시

가격, 태그 및 엔드포인트 URL로 스킬을 제출하세요.

// 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. 수익 창출

대시보드에서 Stripe Connect를 설정하세요.

더 도움이 필요하신가요?

전체 API 참조를 확인하거나 대시보드로 바로 가세요.